Image Classification
Transformers
PyTorch
TensorBoard
English
vit
Generated from Trainer
Landscape
Eval Results (legacy)
Instructions to use DunnBC22/vit-base-patch16-224-in21k-Landscape_Recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DunnBC22/vit-base-patch16-224-in21k-Landscape_Recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="DunnBC22/vit-base-patch16-224-in21k-Landscape_Recognition") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("DunnBC22/vit-base-patch16-224-in21k-Landscape_Recognition") model = AutoModelForImageClassification.from_pretrained("DunnBC22/vit-base-patch16-224-in21k-Landscape_Recognition") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -94,4 +94,13 @@ The following hyperparameters were used during training:
|
|
| 94 |
- Transformers 4.27.4
|
| 95 |
- Pytorch 2.0.0
|
| 96 |
- Datasets 2.11.0
|
| 97 |
-
- Tokenizers 0.13.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
- Transformers 4.27.4
|
| 95 |
- Pytorch 2.0.0
|
| 96 |
- Datasets 2.11.0
|
| 97 |
+
- Tokenizers 0.13.3
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
## License Notice
|
| 101 |
+
This model is a fine-tuned derivative of a pretrained model.
|
| 102 |
+
Users must comply with the original model license.
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
## Dataset Notice
|
| 106 |
+
This model was fine-tuned on third-party datasets which may have separate licenses or usage restrictions.
|