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