Image Classification
Transformers
PyTorch
TensorBoard
English
vit
Generated from Trainer
Eval Results (legacy)
Instructions to use DunnBC22/vit-base-patch16-224-in21k-Mango_leaf_Disease 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-Mango_leaf_Disease 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-Mango_leaf_Disease") 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-Mango_leaf_Disease") model = AutoModelForImageClassification.from_pretrained("DunnBC22/vit-base-patch16-224-in21k-Mango_leaf_Disease") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -90,4 +90,13 @@ The following hyperparameters were used during training:
|
|
| 90 |
- Transformers 4.27.4
|
| 91 |
- Pytorch 2.0.0
|
| 92 |
- Datasets 2.11.0
|
| 93 |
-
- Tokenizers 0.13.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
- Transformers 4.27.4
|
| 91 |
- Pytorch 2.0.0
|
| 92 |
- Datasets 2.11.0
|
| 93 |
+
- Tokenizers 0.13.3
|
| 94 |
+
|
| 95 |
+
|
| 96 |
+
## License Notice
|
| 97 |
+
This model is a fine-tuned derivative of a pretrained model.
|
| 98 |
+
Users must comply with the original model license.
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
## Dataset Notice
|
| 102 |
+
This model was fine-tuned on third-party datasets which may have separate licenses or usage restrictions.
|