Instructions to use alphaedge-ai/siglip2-base-patch16-512-tel-16384 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use alphaedge-ai/siglip2-base-patch16-512-tel-16384 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("alphaedge-ai/siglip2-base-patch16-512-tel-16384") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
| { | |
| "initializer_factor": 1.0, | |
| "model_type": "siglip", | |
| "text_config": { | |
| "model_type": "siglip_text_model", | |
| "vocab_size": 16384 | |
| }, | |
| "transformers_version": "4.49.0.dev0", | |
| "vision_config": { | |
| "image_size": 512, | |
| "model_type": "siglip_vision_model" | |
| } | |
| } |