Instructions to use nprasad24/bean_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nprasad24/bean_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="nprasad24/bean_classifier") 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("nprasad24/bean_classifier") model = AutoModelForImageClassification.from_pretrained("nprasad24/bean_classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -36,11 +36,7 @@ By pre-training the model, it learns an inner representation of images that can
|
|
| 36 |
|
| 37 |
## Intended uses & limitations
|
| 38 |
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
## Training and evaluation data
|
| 42 |
-
|
| 43 |
-
More information needed
|
| 44 |
|
| 45 |
## Training procedure
|
| 46 |
|
|
|
|
| 36 |
|
| 37 |
## Intended uses & limitations
|
| 38 |
|
| 39 |
+
Can only be used on the beans dataset
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
## Training procedure
|
| 42 |
|