Instructions to use ismaeltorres00/Modelodetest with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ismaeltorres00/Modelodetest with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ismaeltorres00/Modelodetest") 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("ismaeltorres00/Modelodetest") model = AutoModelForImageClassification.from_pretrained("ismaeltorres00/Modelodetest") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,6 +5,8 @@ tags:
|
|
| 5 |
- image-classification
|
| 6 |
datasets:
|
| 7 |
- omarques/autotrain-data-dogs-and-cats
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
Esto es un ejercicio del curso de IABD
|
|
|
|
| 5 |
- image-classification
|
| 6 |
datasets:
|
| 7 |
- omarques/autotrain-data-dogs-and-cats
|
| 8 |
+
language:
|
| 9 |
+
- es
|
| 10 |
---
|
| 11 |
|
| 12 |
Esto es un ejercicio del curso de IABD
|