---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- dense
- generated_from_trainer
- dataset_size:72985
- loss:MultipleNegativesRankingLoss
base_model: Qwen/Qwen3-Embedding-0.6B
widget:
- source_sentence: kablosuz klavye mouse set
sentences:
- Dexim KM-317 Slim DKM004 Kablosuz Klavye Mouse Set
- EXEP BASİC BEYAZ 200 3 LÜ ANKASTRE SET (ED400-EO320-EF200)
- Samsung Galaxy A17 128 GB 4 GB Siyah Cep Telefonu
- source_sentence: masa tenisi filesi
sentences:
- Motul 8100 X-Cess Gen2 5W40 5lt
- BUFFER® Mekanizmalı Taşınabilir Kaymaz Masa Tenisi Filesi Ağı Portatif Tüm Masalara
Uyumlu
- Robin Home Dragon Oyuncu Masası Gamer Masa Gaming Bilgisayar Masası Siyah
- source_sentence: yapışkanlı banyo rafı
sentences:
- Çaykur Tiryaki 5 kg Çay
- Yapışkanlı 2 Adet Banyo Düzenleyici Rafı ve Katı Sabunluk Bulaşık Süngerlik Seti
- HESA Dekoratif 5 Raflı Ahşap Ayaklı Kitaplık Ayakkabılık mutfak rafı - Atlantik
Çam
- source_sentence: raflı kitaplık
sentences:
- Apple iPhone 16e 128GB Beyaz
- Morpanya Sera Metal Kitaplık 5 Raflı Çok Amaçlı Dosya Kitap Rafı Ofis Salon Mutfak
Raf 150 cm Ceviz
- Piev House by House Glow Vitrin 360 Döner Standlı Çekmeceli Raflı Hazneli Makyaj
Kozmetik Organizer
- source_sentence: balon standı
sentences:
- Mermer Ayaklı Gümüş / Metal Banyo El Havluluk Kağıt Havluluk Standı
- 2 Adet Balon Süsleme Standı 7li Çubuklu Ikili Set Ayaklı Standı
- Philips Avent Hızlı Biberon Isıtıcı SCF355/07
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on Qwen/Qwen3-Embedding-0.6B
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [Qwen/Qwen3-Embedding-0.6B](https://huggingface.co/Qwen/Qwen3-Embedding-0.6B). It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
## Model Details
### Model Description
- **Model Type:** Sentence Transformer
- **Base model:** [Qwen/Qwen3-Embedding-0.6B](https://huggingface.co/Qwen/Qwen3-Embedding-0.6B)
- **Maximum Sequence Length:** 256 tokens
- **Output Dimensionality:** 1024 dimensions
- **Similarity Function:** Cosine Similarity
### Model Sources
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
### Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'Qwen3Model'})
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': True, 'include_prompt': True})
(2): Normalize()
)
```
## Usage
### Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
```bash
pip install -U sentence-transformers
```
Then you can load this model and run inference.
```python
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("turanyigitpazarama/qwen-0.6B-turkish-ecommerce-tuned")
# Run inference
queries = [
"balon stand\u0131",
]
documents = [
'2 Adet Balon Süsleme Standı 7li Çubuklu Ikili Set Ayaklı Standı',
'Mermer Ayaklı Gümüş / Metal Banyo El Havluluk Kağıt Havluluk Standı',
'Philips Avent Hızlı Biberon Isıtıcı SCF355/07',
]
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.6758, 0.3398, -0.0081]], dtype=torch.bfloat16)
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 72,985 training samples
* Columns: sentence_0, sentence_1, and sentence_2
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | sentence_2 |
|:--------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
| type | string | string | string |
| details |
ayçiçek yağı | Komili Ayçiçek Yağı 4 lt | Shiffa Home Katı Hindistan Cevizi Yağı 330 ml. |
| the purest solutions | The Purest Solutions Bha %2 Oil Control Toner & Siyah Nokta Hedefli, Yağlanma, Gözenek Dengeleyici T | Stanley The AeroLight Transit Lacivert 0.35 lt Termos Bardak |
| banyo paspası | Eko Trend Djt 3 Lü Yıkanabilir Kaymaz Taban Banyo Paspas Seti 747 Klasik | Sepetli Bursa Banyo Dolabı |
* Loss: [MultipleNegativesRankingLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 16
- `per_device_eval_batch_size`: 16
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters