Image Classification
Transformers
TensorBoard
Safetensors
vit
Generated from Trainer
Eval Results (legacy)
Instructions to use pratapaadii/image_classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pratapaadii/image_classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="pratapaadii/image_classification") 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("pratapaadii/image_classification") model = AutoModelForImageClassification.from_pretrained("pratapaadii/image_classification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -81,4 +81,4 @@ The following hyperparameters were used during training:
|
|
| 81 |
- Transformers 4.41.1
|
| 82 |
- Pytorch 2.3.0+cu121
|
| 83 |
- Datasets 2.19.1
|
| 84 |
-
- Tokenizers 0.19.1
|
|
|
|
| 81 |
- Transformers 4.41.1
|
| 82 |
- Pytorch 2.3.0+cu121
|
| 83 |
- Datasets 2.19.1
|
| 84 |
+
- Tokenizers 0.19.1
|