How to use from the
Use from the
sentence-transformers library
from sentence_transformers import SentenceTransformer

model = SentenceTransformer("SMARTICT/embeddinggemma_deik_finetune_GGUF")

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]

embeddinggemma_deik_finetune_GGUF - GGUF

This sentence-transformers model was finetuned and converted to GGUF format using Unsloth.

Available Model files:

  • embeddinggemma-300m.Q4_K_M.gguf

This was trained 2x faster with Unsloth

Downloads last month
26
GGUF
Model size
0.3B params
Architecture
gemma-embedding
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including SMARTICT/embeddinggemma_deik_finetune_GGUF