---
base_model: sentence-transformers/all-MiniLM-L6-v2
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:5749
- loss:CosineSimilarityLoss
widget:
- source_sentence: A girl is styling her hair.
sentences:
- China's online population rises to 618 mln
- A girl is filing her nails.
- A woman is slicing a pepper.
- source_sentence: Australian among four on plane missing in Indonesia
sentences:
- Woman dies in Co Cork house fire
- '''No plans'' to resettle Syrian refugees in the UK'
- Iranian painter Mansoureh Hosseini dies
- source_sentence: West hails Syria opposition vote to join peace talks
sentences:
- Asteroid passes Earth in fly-by
- GlaxoSmithKline, the UK drugmaker, has said it would cut off supplies to Canadian
stores shipping drugs to the US.
- Syrian opposition to name delegation for talks
- source_sentence: Obama signs up for Obamacare
sentences:
- Americans scramble to sign up for Obamacare by deadline
- A girl wearing a red blouse riding a brown horse.
- The study also found that skin cancer nearly tripled in Norway and Sweden since
the 1950s.
- source_sentence: A clear plastic chair in front of a bookcase.
sentences:
- A woman with a white horse.
- a clear plastic chair in front of book shelves.
- A herd of caribou are crossing a road.
---
# SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2). It maps sentences & paragraphs to a 384-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:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2)
- **Maximum Sequence Length:** 256 tokens
- **Output Dimensionality:** 384 tokens
- **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}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, '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})
(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("akshitha-k/all-MiniLM-L6-v2-stsb")
# Run inference
sentences = [
'A clear plastic chair in front of a bookcase.',
'a clear plastic chair in front of book shelves.',
'A woman with a white horse.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 5,749 training samples
* Columns: sentence_0
, sentence_1
, and label
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | label |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------|
| type | string | string | float |
| details |
U.N. rights chief presses Egypt on Mursi detention
| UN Rights Chief Presses Egypt on Morsi Detention
| 1.0
|
| Someone is slicing an onion.
| Someoen is peeling a potato.
| 0.2
|
| A young boy in a white dress shirt is playing on a grassy plain.
| A woman is getting her hair done at a salon.
| 0.0
|
* Loss: [CosineSimilarityLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
```json
{
"loss_fct": "torch.nn.modules.loss.MSELoss"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 16
- `per_device_eval_batch_size`: 16
- `num_train_epochs`: 20
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters