Instructions to use torresflo/Poke-Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use torresflo/Poke-Model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="torresflo/Poke-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("torresflo/Poke-Model") model = AutoModelForImageClassification.from_pretrained("torresflo/Poke-Model") - Notebooks
- Google Colab
- Kaggle
Florian Torres commited on
Commit ·
b7bd686
1
Parent(s): 761a76d
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,11 +5,11 @@ tags:
|
|
| 5 |
- image-classification
|
| 6 |
- Pokémon
|
| 7 |
widget:
|
| 8 |
-
- src: https://huggingface.co/torresflo/Poke-Model/
|
| 9 |
example_title: Bulbasaur
|
| 10 |
-
- src: https://huggingface.co/torresflo/Poke-Model/
|
| 11 |
example_title: Charizard
|
| 12 |
-
- src: https://huggingface.co/torresflo/Poke-Model/
|
| 13 |
example_title: Blastoise
|
| 14 |
---
|
| 15 |
|
|
|
|
| 5 |
- image-classification
|
| 6 |
- Pokémon
|
| 7 |
widget:
|
| 8 |
+
- src: https://huggingface.co/torresflo/Poke-Model/resolve/main/examples/1.jpg
|
| 9 |
example_title: Bulbasaur
|
| 10 |
+
- src: https://huggingface.co/torresflo/Poke-Model/resolve/main/examples/2.jpg
|
| 11 |
example_title: Charizard
|
| 12 |
+
- src: https://huggingface.co/torresflo/Poke-Model/resolve/main/examples/3.jpg
|
| 13 |
example_title: Blastoise
|
| 14 |
---
|
| 15 |
|