---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:268861
- loss:MultipleNegativesRankingLoss
base_model: Qwen/Qwen3-0.6B-Base
widget:
- source_sentence: 'There are seven thieves. They stole diamonds from a diamond merchant
and ran away. While running, night sets in and they decide to rest in the jungle.
When everybody was sleeping, two of them woke up and decided to divide the diamonds
equally among themselves. But when they divided the diamonds equally, one diamond
is left.
So they woke up the 3rd thief and tried to divide the diamonds equally again but
still one diamond was left. Then they woke up the 4th thief to divide the diamonds
equally again, and again one diamond was left. This happened with the 5th and
6th thief – one diamond was still left.
Finally, they woke up the 7th thief and this time the diamonds were divided equally.
How many diamonds did they steal in total?'
sentences:
- ''''
- ''''
- e
- source_sentence: 'praveen starts business with rs . 3220 and after 5 months , hari
joins with praveen as his partner . after a year , the profit is divided in the
ratio 2 : 3 . what is hari ’ s contribution in the capital ?'
sentences:
- s
- '5'
- '['
- source_sentence: 'Which of the following is material of choice in class V
cavity with abfraction?'
sentences:
- '['
- t
- G
- source_sentence: A right circular cylinder has a height of 25 and a radius of 5.
A rectangular solid with a height of 15 and a square base, is placed in the cylinder
such that each of the corners of the solid is tangent to the cylinder wall. Liquid
is then poured into the cylinder such that it reaches the rim. What is the volume
of the liquid?
sentences:
- '5'
- '['
- '2'
- source_sentence: Cerebral angiography was performed by -
sentences:
- S
- t
- '2'
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on Qwen/Qwen3-0.6B-Base
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [Qwen/Qwen3-0.6B-Base](https://huggingface.co/Qwen/Qwen3-0.6B-Base). 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-0.6B-Base](https://huggingface.co/Qwen/Qwen3-0.6B-Base)
- **Maximum Sequence Length:** 128 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': 128, 'do_lower_case': False}) with Transformer model: Qwen3Model
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)
```
## 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("sentence_transformers_model_id")
# Run inference
sentences = [
'Cerebral angiography was performed by -',
'S',
'2',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 268,861 training samples
* Columns: sentence_0 and sentence_1
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 |
|:--------|:----------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|
| type | string | string |
| details |
A 1200 m long train crosses a tree in 120 sec, how much time will I take to pass a platform 1100 m long? | ' |
| What is the opposite of rarefaction zones, where air molecules in waves are loosely packed? | [ |
| if w is 40 percent less than e , e is 40 percent less than y , and z is 46 percent less than y , then z is greater than w by what percent of w ? | % |
* Loss: [MultipleNegativesRankingLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 64
- `per_device_eval_batch_size`: 64
- `num_train_epochs`: 4
- `fp16`: True
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters