Instructions to use hy1111/CLIP-RS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hy1111/CLIP-RS with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="hy1111/CLIP-RS")# Load model directly from transformers import AutoProcessor, AutoModelForZeroShotImageClassification processor = AutoProcessor.from_pretrained("hy1111/CLIP-RS") model = AutoModelForZeroShotImageClassification.from_pretrained("hy1111/CLIP-RS") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,6 +5,7 @@ language:
|
|
| 5 |
base_model:
|
| 6 |
- openai/clip-vit-large-patch14-336
|
| 7 |
pipeline_tag: zero-shot-classification
|
|
|
|
| 8 |
---
|
| 9 |
# CLIP-RS: Vision-Language Pre-training with Data Purification for Remote Sensing
|
| 10 |
|
|
|
|
| 5 |
base_model:
|
| 6 |
- openai/clip-vit-large-patch14-336
|
| 7 |
pipeline_tag: zero-shot-classification
|
| 8 |
+
library_name: transformers
|
| 9 |
---
|
| 10 |
# CLIP-RS: Vision-Language Pre-training with Data Purification for Remote Sensing
|
| 11 |
|