Instructions to use davanstrien/convnext_manuscript_iiif with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use davanstrien/convnext_manuscript_iiif with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="davanstrien/convnext_manuscript_iiif") 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_manuscript_iiif") model = AutoModelForImageClassification.from_pretrained("davanstrien/convnext_manuscript_iiif") - Notebooks
- Google Colab
- Kaggle
Commit ·
bde0b77
1
Parent(s): e2e5225
Librarian Bot: Add base_model information to model (#3)
Browse files- Librarian Bot: Add base_model information to model (533ff8aeb1ffed0ebbd4f39c6bc5280304a9ebfe)
Co-authored-by: Librarian Bot (Bot) <librarian-bot@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -5,6 +5,7 @@ tags:
|
|
| 5 |
- generated_from_trainer
|
| 6 |
metrics:
|
| 7 |
- f1
|
|
|
|
| 8 |
model-index:
|
| 9 |
- name: convnext_manuscript_iiif
|
| 10 |
results: []
|
|
|
|
| 5 |
- generated_from_trainer
|
| 6 |
metrics:
|
| 7 |
- f1
|
| 8 |
+
base_model: facebook/convnext-base-224-22k
|
| 9 |
model-index:
|
| 10 |
- name: convnext_manuscript_iiif
|
| 11 |
results: []
|