Instructions to use tribber93/my-trash-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tribber93/my-trash-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="tribber93/my-trash-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("tribber93/my-trash-classification") model = AutoModelForImageClassification.from_pretrained("tribber93/my-trash-classification", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,11 +3,8 @@ tags:
|
|
| 3 |
- image-classification
|
| 4 |
- pytorch
|
| 5 |
library_name: transformers
|
| 6 |
-
language: en
|
| 7 |
datasets:
|
| 8 |
- garythung/trashnet
|
| 9 |
-
metrics:
|
| 10 |
-
- accuracy
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
|
|
| 3 |
- image-classification
|
| 4 |
- pytorch
|
| 5 |
library_name: transformers
|
|
|
|
| 6 |
datasets:
|
| 7 |
- garythung/trashnet
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
|