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

model = SentenceTransformer("SMARTICT/Qwen3-Embedding-0.6B_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]

Qwen3-Embedding-0.6B_deik_finetune_GGUF - GGUF

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

Available Model files:

  • Qwen3-Embedding-0.6B.Q4_K_M.gguf

This was trained 2x faster with Unsloth

Downloads last month
11
GGUF
Model size
0.6B params
Architecture
qwen3
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/Qwen3-Embedding-0.6B_deik_finetune_GGUF