Instructions to use pillIdentifierAI/pillIdentifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pillIdentifierAI/pillIdentifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="pillIdentifierAI/pillIdentifier") 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("pillIdentifierAI/pillIdentifier") model = AutoModelForImageClassification.from_pretrained("pillIdentifierAI/pillIdentifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ metrics:
|
|
| 7 |
library_name: transformers
|
| 8 |
tags:
|
| 9 |
- medical
|
| 10 |
-
pipeline_tag:
|
| 11 |
---
|
| 12 |
|
| 13 |
This model is part of a school project.
|
|
|
|
| 7 |
library_name: transformers
|
| 8 |
tags:
|
| 9 |
- medical
|
| 10 |
+
pipeline_tag: image-classification
|
| 11 |
---
|
| 12 |
|
| 13 |
This model is part of a school project.
|