---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:2008
- loss:MultipleNegativesRankingLoss
base_model: sentence-transformers/all-MiniLM-L6-v2
widget:
- source_sentence: I suspect their compliments are disingenuous
sentences:
- I limit my interactions with them as much as possible
- I observe my feelings about work-life integration.
- I notice how music affects my work mood.
- source_sentence: I avoid sharing personal information with this individual
sentences:
- I accept constructive criticism to improve my skills.
- I observe my feelings about work-life integration.
- I experience frustration thinking about their actions
- source_sentence: I track my emotional response to workload changes.
sentences:
- I accept new roles with enthusiasm.
- I reflect on how my environment impacts my focus.
- I fully concentrate on client communications.
- source_sentence: I accept constructive feedback with a positive attitude.
sentences:
- I stay conscious of my emotional responses to work challenges.
- I accept different viewpoints as enriching experiences.
- I reflect on how my environment impacts my focus.
- source_sentence: I accept that mistakes are part of learning.
sentences:
- I accept and learn from performance reviews.
- I am mindful of my thoughts when assigned new tasks.
- I accept the need for workplace adaptability.
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# 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 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}) 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("zihoo/all-MiniLM-L6-v2-WMNLI-multirank")
# Run inference
sentences = [
'I accept that mistakes are part of learning.',
'I accept and learn from performance reviews.',
'I am mindful of my thoughts when assigned new tasks.',
]
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: 2,008 training samples
* Columns: sentence1
, sentence2
, and label
* Approximate statistics based on the first 1000 samples:
| | sentence1 | sentence2 | label |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:-----------------------------|
| type | string | string | int |
| details |
I observe my reaction to shifting deadlines.
| I notice how lighting affects my work energy.
| 0
|
| I feel anxious when they are in the same room as me
| I believe they will exploit any weaknesses I reveal
| 0
|
| I stay attuned to my thoughts in high-pressure situations.
| I am mindful of my response to urgent requests.
| 0
|
* Loss: [MultipleNegativesRankingLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
```
### Evaluation Dataset
#### Unnamed Dataset
* Size: 503 evaluation samples
* Columns: sentence1
, sentence2
, and label
* Approximate statistics based on the first 503 samples:
| | sentence1 | sentence2 | label |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:-----------------------------|
| type | string | string | int |
| details | I accept that mistakes are part of learning.
| I calmly accept last-minute work changes.
| 0
|
| I track my emotional response to workload changes.
| I reflect on how my environment impacts my focus.
| 0
|
| I accept constructive feedback with gratitude.
| I accept and adapt to shifting project priorities.
| 0
|
* 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
- `eval_strategy`: steps
- `per_device_train_batch_size`: 32
- `per_device_eval_batch_size`: 32
- `learning_rate`: 5e-06
- `num_train_epochs`: 5
- `warmup_ratio`: 0.01
#### All Hyperparameters