edadaltocg's picture
Upload README.md with huggingface_hub
3f448aa
|
raw
history blame
No virus
1.44 kB
---
language: en
license: mit
library_name: timm
tags:
- image-classification
- timm/vit_base_patch16_224.orig_in21k_ft_in1k
- svhn
datasets: svhn
metrics:
- accuracy
model-index:
- name: vit_base_patch16_224_in21k_ft_svhn
results:
- task:
type: image-classification
dataset:
name: SVHN
type: svhn
metrics:
- type: accuracy
value: 0.9672326367547633
---
# Model Card for Model ID
This model is a small timm/vit_base_patch16_224.orig_in21k_ft_in1k trained on svhn.
- **Test Accuracy:** 0.9672326367547633
- **License:** MIT
## How to Get Started with the Model
Use the code below to get started with the model.
```python
import detectors
import timm
model = timm.create_model("vit_base_patch16_224_in21k_ft_svhn", pretrained=True)
```
## Training Data
Training data is svhn.
## Training Hyperparameters
- **config**: `scripts/train_configs/ft_svhn.json`
- **model**: `vit_base_patch16_224_in21k_ft_svhn`
- **dataset**: `svhn`
- **batch_size**: `64`
- **epochs**: `10`
- **validation_frequency**: `1`
- **seed**: `1`
- **criterion**: `CrossEntropyLoss`
- **criterion_kwargs**: `{}`
- **optimizer**: `SGD`
- **lr**: `0.01`
- **optimizer_kwargs**: `{'momentum': 0.9, 'weight_decay': 0.0}`
- **scheduler**: `CosineAnnealingLR`
- **scheduler_kwargs**: `{'T_max': 10}`
- **debug**: `False`
## Testing Data
Testing data is svhn.
---
This model card was created by Eduardo Dadalto.