qwen-0.6B-turkish-ecommerce-tuned-omnibusv2

11
by
turanyigitpazarama
Embedding Model
OTHER
0.6B params
New
11 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
2GB+ RAM
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Device Compatibility

Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
1GB+ RAM

Code Examples

Usagebash
pip install -U sentence-transformers
Usagepython
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("turanyigitpazarama/qwen-0.6B-turkish-ecommerce-tuned-omnibusv2")
# Run inference
queries = [
    "Instruct: Find complementary items frequently bought together with this product.\nQuery: Toyota auris oto branda ara\u00e7 \u00f6rt\u00fcs\u00fc 2007-",
]
documents = [
    'Toyota Auris (2006-2011) Araçlar için Led Xenon Kısa Far Aydınlatma Ampulu FEMEX Premio Plus H11',
    'Micro Fitted Full Kenar Su Sıvı Geçirmez Alez Çarşaf Tek Çift Kişilik Beyaz Renkli Yatak Koruyucu',
    'Kadın sarı altın ince zincirli, ortasında dikdörtgen formda baget kesim pırlanta ve zirkon taşlarla çevrili bir adet charm bulunan zarif kolye',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 1024] [3, 1024]

# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[0.5859, 0.2275, 0.0238]], dtype=torch.bfloat16)

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.