Instructions to use prithivMLmods/SAT-Landforms-Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/SAT-Landforms-Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/SAT-Landforms-Classifier") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("prithivMLmods/SAT-Landforms-Classifier") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/SAT-Landforms-Classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,6 +11,9 @@ tags:
|
|
| 11 |
- SAT
|
| 12 |
- Landforms
|
| 13 |
---
|
|
|
|
|
|
|
|
|
|
| 14 |
# **SAT-Landforms-Classifier**
|
| 15 |
|
| 16 |
> **SAT-Landforms-Classifier** is an image classification vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for a single-label classification task. It is designed to classify satellite images into different landform categories using the **SiglipForImageClassification** architecture.
|
|
|
|
| 11 |
- SAT
|
| 12 |
- Landforms
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+

|
| 16 |
+
|
| 17 |
# **SAT-Landforms-Classifier**
|
| 18 |
|
| 19 |
> **SAT-Landforms-Classifier** is an image classification vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for a single-label classification task. It is designed to classify satellite images into different landform categories using the **SiglipForImageClassification** architecture.
|