Instructions to use HPAI-BSC/SuSy with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HPAI-BSC/SuSy with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="HPAI-BSC/SuSy") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("HPAI-BSC/SuSy", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Modify pipeline_tag
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ datasets:
|
|
| 10 |
tags:
|
| 11 |
- vision
|
| 12 |
- image-classification
|
| 13 |
-
pipeline_tag:
|
| 14 |
---
|
| 15 |
|
| 16 |
# SuSy - Synthetic Image Detector
|
|
|
|
| 10 |
tags:
|
| 11 |
- vision
|
| 12 |
- image-classification
|
| 13 |
+
pipeline_tag: image-classification
|
| 14 |
---
|
| 15 |
|
| 16 |
# SuSy - Synthetic Image Detector
|