Sentence Similarity
sentence-transformers
Safetensors
Spanish
gte
passage-retrieval
pruned
custom_code
Instructions to use CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu", trust_remote_code=True) sentences = [ "Esa es una persona feliz", "Ese es un perro feliz", "Esa es una persona muy feliz", "Hoy es un dÃa soleado" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
🇪🇸 spanish-snowflake-arctic-embed-m-v2.0-cpu
This model is a 50.7% smaller version of cnmoro/snowflake-arctic-embed-m-v2.0-cpu for the Spanish language, created using the mtem-pruner space.
This pruned model should perform similarly to the original model for Spanish language tasks with a much smaller memory footprint. However, it may not perform well for other languages present in the original multilingual model as tokens not commonly used in Spanish were removed from the original multilingual model's vocabulary.
Usage
You can use this model with the Transformers library:
from transformers import AutoModel, AutoTokenizer
model_name = "CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu"
model = AutoModel.from_pretrained(model_name, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True, use_fast=True)
Or with the sentence-transformers library:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu")
Credits: cc @antoinelouis
- Downloads last month
- 1
Model tree for CarlosRCDev/spanish-snowflake-arctic-embed-m-v2.0-cpu
Base model
cnmoro/snowflake-arctic-embed-m-v2.0-cpu