Skip to content

Commit 5b08113

Browse files
authoredJun 19, 2018
Dev (#142)
* added gmean tta, experimented with thresholding (#125) * Dev repo cleanup (#138) * initial restructure * clean structure (#126) * clean structure * correct readme * further cleaning * Dev apply transformer (#131) * clean structure * correct readme * further cleaning * resizer docstring * couple docstrings * make apply transformer, memory cache * fixes * postprocessing docstrings * fixes in PR * Dev repo cleanup (#132) * cleanup * remove src. * Dev clean tta (#134) * added resize padding, refactored inference pipelines * refactored piepliens * added color shift augmentation * reduced caching to just mask_resize * updated config * Dev-repo_cleanup models and losses docstrings (#135) * models and losses docstrings * small fixes in docstrings * resolve conflicts in with TTA PR (#137) * refactor in stream mode (#139) * hot fix of mask_postprocessing in tta with new make transformer * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * local * Update README.md * Update README.md * Update README.md * Update README.md * Dev preparation path fix (#140) * local * cleaned up paths in the masks and metadata generation * dropped debug stuff * Dev non trainable transformer flag (#141) * local * added is_trainable flag to models
1 parent 50bbad6 commit 5b08113

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1045
-1247
lines changed
 

‎Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM python:3.5
2+
3+
RUN apt-get update
4+
RUN pip3 install http://download.pytorch.org/whl/cpu/torch-0.3.1-cp35-cp35m-linux_x86_64.whl && \
5+
pip3 install torchvision
6+
7+
COPY requirements.txt requirements.txt
8+
RUN pip install -r requirements.txt
9+
10+
#ADD ./src /opt/src
11+
#ADD ./model_weights /opt/model_weights
12+
13+
WORKDIR /opt/src

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ $ neptune data upload YOUR/DATA/FOLDER
203203
* local pure python
204204

205205
```bash
206-
$ python main.py train --pipeline_name unet_weighted
206+
$ python main.py -- train --pipeline_name unet_weighted
207207
```
208208

209209
7. evaluate model and predict on test data:
@@ -237,7 +237,7 @@ $ neptune data upload YOUR/DATA/FOLDER
237237
* local pure python
238238

239239
```bash
240-
$ python main.py evaluate_predict --pipeline_name unet_tta --chunk_size 1000
240+
$ python main.py -- evaluate_predict --pipeline_name unet_tta --chunk_size 1000
241241
```
242242

243243
## User support

0 commit comments

Comments
 (0)
Please sign in to comment.