Update README.md
Browse files
README.md
CHANGED
@@ -41,12 +41,23 @@ More information needed
|
|
41 |
|
42 |
More information needed
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
## Training and evaluation data
|
45 |
|
46 |
More information needed
|
47 |
|
48 |
## Training procedure
|
49 |
|
|
|
|
|
50 |
### Training hyperparameters
|
51 |
|
52 |
The following hyperparameters were used during training:
|
|
|
41 |
|
42 |
More information needed
|
43 |
|
44 |
+
## How to Get Started with the Model
|
45 |
+
|
46 |
+
```Python
|
47 |
+
from transformers import pipeline
|
48 |
+
|
49 |
+
pipe = pipeline("image-classification", "avanishd/vit-base-patch16-224-in21k-finetuned-cifar10")
|
50 |
+
pipe(image)
|
51 |
+
```
|
52 |
+
|
53 |
## Training and evaluation data
|
54 |
|
55 |
More information needed
|
56 |
|
57 |
## Training procedure
|
58 |
|
59 |
+
More information needed
|
60 |
+
|
61 |
### Training hyperparameters
|
62 |
|
63 |
The following hyperparameters were used during training:
|