Instructions to use iammartian0/vegetation_classification_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iammartian0/vegetation_classification_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="iammartian0/vegetation_classification_model") 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("iammartian0/vegetation_classification_model") model = AutoModelForImageClassification.from_pretrained("iammartian0/vegetation_classification_model") - Notebooks
- Google Colab
- Kaggle
Commit ·
be5e9cf
1
Parent(s): 9a55a58
Update README.md
Browse files
README.md
CHANGED
|
@@ -31,6 +31,9 @@ You can use this model directly with help of pipeline class from transformers li
|
|
| 31 |
>>>classifier(image)
|
| 32 |
|
| 33 |
```
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
## Training procedure
|
| 36 |
|
|
|
|
| 31 |
>>>classifier(image)
|
| 32 |
|
| 33 |
```
|
| 34 |
+
or
|
| 35 |
+
|
| 36 |
+
uploading a target image to Hosted inference api.
|
| 37 |
|
| 38 |
## Training procedure
|
| 39 |
|