edadaltocg
commited on
Commit
•
0f0e11a
1
Parent(s):
545fffd
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
license: mit
|
4 |
+
library_name: timm
|
5 |
+
tags:
|
6 |
+
- image-classification
|
7 |
+
- vgg16_bn
|
8 |
+
- cifar10
|
9 |
+
datasets: cifar10
|
10 |
+
metrics:
|
11 |
+
- accuracy
|
12 |
+
model-index:
|
13 |
+
- name: vgg16_bn_cifar10
|
14 |
+
results:
|
15 |
+
- task:
|
16 |
+
type: image-classification
|
17 |
+
dataset:
|
18 |
+
name: CIFAR-10
|
19 |
+
type: cifar10
|
20 |
+
metrics:
|
21 |
+
- type: accuracy
|
22 |
+
value: 0.9337
|
23 |
+
---
|
24 |
+
|
25 |
+
# Model Card for Model ID
|
26 |
+
|
27 |
+
This model is a small vgg16_bn trained on cifar10.
|
28 |
+
|
29 |
+
- **Test Accuracy:** 0.9337
|
30 |
+
- **License:** MIT
|
31 |
+
|
32 |
+
## How to Get Started with the Model
|
33 |
+
|
34 |
+
Use the code below to get started with the model.
|
35 |
+
|
36 |
+
```python
|
37 |
+
import detectors
|
38 |
+
import timm
|
39 |
+
|
40 |
+
model = timm.create_model("vgg16_bn_cifar10", pretrained=True)
|
41 |
+
```
|
42 |
+
|
43 |
+
## Training Data
|
44 |
+
|
45 |
+
Training data is cifar10.
|
46 |
+
|
47 |
+
## Training Hyperparameters
|
48 |
+
|
49 |
+
|
50 |
+
- **config**: `scripts/train_configs/cifar10.json`
|
51 |
+
|
52 |
+
- **model**: `vgg16_bn_cifar10`
|
53 |
+
|
54 |
+
- **dataset**: `cifar10`
|
55 |
+
|
56 |
+
- **batch_size**: `128`
|
57 |
+
|
58 |
+
- **epochs**: `300`
|
59 |
+
|
60 |
+
- **validation_frequency**: `5`
|
61 |
+
|
62 |
+
- **seed**: `1`
|
63 |
+
|
64 |
+
- **criterion**: `CrossEntropyLoss`
|
65 |
+
|
66 |
+
- **criterion_kwargs**: `{}`
|
67 |
+
|
68 |
+
- **optimizer**: `SGD`
|
69 |
+
|
70 |
+
- **lr**: `0.1`
|
71 |
+
|
72 |
+
- **optimizer_kwargs**: `{'momentum': 0.9, 'weight_decay': 0.0005, 'nesterov': 'True'}`
|
73 |
+
|
74 |
+
- **scheduler**: `ReduceLROnPlateau`
|
75 |
+
|
76 |
+
- **scheduler_kwargs**: `{'factor': 0.1, 'patience': 3, 'threshold': 0.001, 'mode': 'max'}`
|
77 |
+
|
78 |
+
- **debug**: `False`
|
79 |
+
|
80 |
+
|
81 |
+
## Testing Data
|
82 |
+
|
83 |
+
Testing data is cifar10.
|
84 |
+
|
85 |
+
---
|
86 |
+
|
87 |
+
This model card was created by Eduardo Dadalto.
|