Skip to content

Commit 0554b79

Browse files
authored
Update README.md
1 parent a4497af commit 0554b79

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ This params are for dual Titan RTX cards with NVIDIA Apex installed:
264264

265265
### SE-ResNeXt-26-D and SE-ResNeXt-26-T
266266
These hparams (or similar) work well for a wide range of ResNet architecture, generally a good idea to increase the epoch # as the model size increases... ie approx 180-200 for ResNe(X)t50, and 220+ for larger. Increase batch size and LR proportionally for better GPUs or with AMP enabled. These params were for 2 1080Ti cards:
267-
i
267+
268268
`./distributed_train.sh 2 /imagenet/ --model seresnext26t_32x4d --lr 0.1 --warmup-epochs 5 --epochs 160 --weight-decay 1e-4 --sched cosine --reprob 0.4 --remode pixel -b 112`
269269

270270
### EfficientNet-B3 with RandAugment - 81.5 top-1, 95.7 top-5
@@ -279,13 +279,14 @@ The training of this model started with the same command line as EfficientNet-B2
279279

280280
All development and testing has been done in Conda Python 3 environments on Linux x86-64 systems, specifically Python 3.6.x and 3.7.x. Little to no care has been taken to be Python 2.x friendly and I don't plan to support it. If you run into any challenges running on Windows, or other OS, I'm definitely open to looking into those issues so long as it's in a reproducible (read Conda) environment.
281281

282-
PyTorch versions 1.0 and 1.1 have been tested with this code.
282+
PyTorch versions 1.2 and 1.3.1 have been tested with this code.
283283

284284
I've tried to keep the dependencies minimal, the setup is as per the PyTorch default install instructions for Conda:
285285
```
286286
conda create -n torch-env
287287
conda activate torch-env
288-
conda install -c pytorch pytorch torchvision cudatoolkit=10.0
288+
conda install -c pytorch pytorch torchvision cudatoolkit=10
289+
conda install pyyaml
289290
```
290291

291292
### Pip
@@ -331,5 +332,4 @@ To run inference from a checkpoint:
331332
## TODO
332333
A number of additions planned in the future for various projects, incl
333334
* Do a model performance (speed + accuracy) benchmarking across all models (make runable as script)
334-
* Add usage examples to comments, good hyper params for training
335-
* Comments, cleanup and the usual things that get pushed back
335+
* Complete feature map extraction across all model types and build obj detection/segmentation models and scripts (or integrate backbones with mmdetection, detectron2)

0 commit comments

Comments
 (0)