Zero-Shot Image Classification
OpenCLIP
ONNX
Safetensors
Transformers
Transformers.js
English
siglip
clip
e-commerce
fashion
multimodal retrieval
custom_code
Instructions to use Marqo/marqo-fashionSigLIP with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- OpenCLIP
How to use Marqo/marqo-fashionSigLIP with OpenCLIP:
import open_clip model, preprocess_train, preprocess_val = open_clip.create_model_and_transforms('hf-hub:Marqo/marqo-fashionSigLIP') tokenizer = open_clip.get_tokenizer('hf-hub:Marqo/marqo-fashionSigLIP') - Transformers
How to use Marqo/marqo-fashionSigLIP with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-image-classification", model="Marqo/marqo-fashionSigLIP", trust_remote_code=True) pipe( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png", candidate_labels=["animals", "humans", "landscape"], )# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Marqo/marqo-fashionSigLIP", trust_remote_code=True, dtype="auto") - Transformers.js
How to use Marqo/marqo-fashionSigLIP with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('zero-shot-image-classification', 'Marqo/marqo-fashionSigLIP'); - Notebooks
- Google Colab
- Kaggle
Is Marqo Fashion Siglip 2 available as open source?
1
#10 opened 3 months ago
by
wooj1nBot
load model from local dir
2
#9 opened 11 months ago
by
laserK3000
Can you make it compatible with Infinity server?
4
#8 opened about 1 year ago
by
pySilver
Text Embeddings
6
#7 opened over 1 year ago
by
omarabb315
Sentence Transformers Support
2
#6 opened over 1 year ago
by
mdaya
Multi language?
4
#5 opened over 1 year ago
by
nixudos
Use with Qdrant
2
#4 opened over 1 year ago
by
thanhtung2693
Is there a paper associated with this model?
5
#3 opened over 1 year ago
by
zhast
What is the token limit for text ?
1
#2 opened over 1 year ago
by
jvmssnk2001