Image Classification
Transformers
PyTorch
TensorBoard
Safetensors
convnext
vision
Generated from Trainer
Instructions to use davanstrien/convnext-tiny-224-leicester_binary with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use davanstrien/convnext-tiny-224-leicester_binary with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="davanstrien/convnext-tiny-224-leicester_binary") 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("davanstrien/convnext-tiny-224-leicester_binary") model = AutoModelForImageClassification.from_pretrained("davanstrien/convnext-tiny-224-leicester_binary") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -9,6 +9,7 @@ metrics:
|
|
| 9 |
- recall
|
| 10 |
- f1
|
| 11 |
- accuracy
|
|
|
|
| 12 |
model-index:
|
| 13 |
- name: convnext-tiny-224-leicester_binary
|
| 14 |
results: []
|
|
|
|
| 9 |
- recall
|
| 10 |
- f1
|
| 11 |
- accuracy
|
| 12 |
+
base_model: facebook/convnext-tiny-224
|
| 13 |
model-index:
|
| 14 |
- name: convnext-tiny-224-leicester_binary
|
| 15 |
results: []
|