Update README.md
Browse files
README.md
CHANGED
|
@@ -7,3 +7,27 @@ library_name: timm
|
|
| 7 |
license: apache-2.0
|
| 8 |
---
|
| 9 |
# Model card for resnext101d_32x4d
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
license: apache-2.0
|
| 8 |
---
|
| 9 |
# Model card for resnext101d_32x4d
|
| 10 |
+
|
| 11 |
+
This repo is provided with ResNeXt101d_32x4d trained by timm.
|
| 12 |
+
|
| 13 |
+
## Usage
|
| 14 |
+
|
| 15 |
+
```python
|
| 16 |
+
model = timm.create_model("hf_hub:mjun0812/resnext101d_32x4d", pretrained=True)
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Detail
|
| 20 |
+
|
| 21 |
+
ImageNet-1K results
|
| 22 |
+
|
| 23 |
+
| top1 | top5 |
|
| 24 |
+
| -- | -- |
|
| 25 |
+
| 80.9695 | 95.1044 |
|
| 26 |
+
|
| 27 |
+
training command
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
torchrun train.py \
|
| 31 |
+
--data-dir ~/workspace/dataset/ImageNet --model resnext101d_32x4d --lr 0.6 --warmup-epochs 5 --epochs 240 \
|
| 32 |
+
--weight-decay 1e-4 --sched cosine --reprob 0.4 --recount 3 --remode pixel --aa rand-m7-mstd0.5-inc1 -b 256 -j 6 --amp --dist-bn reduce
|
| 33 |
+
```
|