SamAdamDay commited on
Commit
724f45f
·
verified ·
1 Parent(s): 54ae489

Update README with latest info

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -19,7 +19,7 @@ model-index:
19
  metrics:
20
  - name: accuracy
21
  type: accuracy
22
- value: 92.73
23
  ---
24
  # Model card for resnet18_cifar10
25
 
@@ -32,19 +32,20 @@ model = timm.create_model("hf_hub:SamAdamDay/resnet18_cifar10", pretrained=True)
32
 
33
  The model was trained using the following command:
34
  ```bash
35
- ./distributed_train.sh --dataset torch/cifar10 --data-dir /root/data --dataset-download --model resnet18 --lr-base 0.3
36
  ```
37
 
38
  ## Metrics
39
 
40
- The model has a test accuracy of 92.73.
41
 
42
  ## Model Details
43
  - **Dataset:** cifar10
44
- - **Number of epochs:** 300
45
  - **Batch size:** 128
46
  - **Base LR:** 0.3
47
  - **LR scheduler:** cosine
 
48
  - **PyTorch version:** 2.3.0+cu121
49
  - **timm version:** 1.0.7
50
 
 
19
  metrics:
20
  - name: accuracy
21
  type: accuracy
22
+ value: 94.73
23
  ---
24
  # Model card for resnet18_cifar10
25
 
 
32
 
33
  The model was trained using the following command:
34
  ```bash
35
+ ./distributed_train.sh --dataset torch/cifar10 --data-dir /root/data --dataset-download --model resnet18 --lr-base 0.3 --epochs 100 --input-size 3 256 256 -mean 0.49139968 0.48215827 0.44653124 --std 0.24703233 0.24348505 0.26158768 --num-classes 10
36
  ```
37
 
38
  ## Metrics
39
 
40
+ The model has a test accuracy of 94.73.
41
 
42
  ## Model Details
43
  - **Dataset:** cifar10
44
+ - **Number of epochs:** 100
45
  - **Batch size:** 128
46
  - **Base LR:** 0.3
47
  - **LR scheduler:** cosine
48
+ - **Input size** (3, 256, 256), images are scaled to this size
49
  - **PyTorch version:** 2.3.0+cu121
50
  - **timm version:** 1.0.7
51