---
base_model: sentence-transformers/all-MiniLM-L6-v2
datasets: []
language: []
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:200
- loss:SoftmaxLoss
widget:
- source_sentence: ' AI significantly contributes to my research efficiency,'
sentences:
- ' I feel apprehensive about AIs influence on job markets,'
- ' AI tools support me in delivering better results,'
- ' AI could reduce the need for human intervention in many fields,'
- source_sentence: ' I feel tense dealing with advanced AI technologies,'
sentences:
- ' I worry that AI will eventually replace my job,'
- ' AI can replicate humorous interactions similar to humans,'
- ' AI could lead to significant job losses in various industries,'
- source_sentence: ' AIs adaptability to new information is remarkable,'
sentences:
- ' The quality of AI-generated translations is impressive,'
- ' My reliance on AI generates occasional stress,'
- ' AI might affect the stability of job markets globally,'
- source_sentence: ' The high quality of AI in voice synthesis is staggering,'
sentences:
- ' AIs accuracy in identifying patterns is excellent,'
- ' AIs diagnostic capabilities in healthcare are impressive,'
- ' AI can self-optimize based on performance metrics,'
- source_sentence: ' AI enhances my capability to manage diverse projects,'
sentences:
- ' AI can mimic nuanced human interactions,'
- ' AI could replace numerous jobs in logistics,'
- ' AIs predictive analyses are consistently accurate,'
---
# 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("zihoo/all-MiniLM-L6-v2-AINLI")
# Run inference
sentences = [
' AI enhances my capability to manage diverse projects,',
' AI can mimic nuanced human interactions,',
' AIs predictive analyses are consistently accurate,',
]
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: 200 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 | int |
| details |
AI can hold a relevant and coherent conversation,
| The automation provided by AI could reduce job availability,
| 2
|
| The concept of AI making autonomous decisions worries me,
| I am hesitant to rely on AI for financial advice,
| 0
|
| AI has the potential to displace many technical jobs,
| AI improves my productivity by handling repetitive tasks,
| 2
|
* Loss: [SoftmaxLoss
](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#softmaxloss)
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 64
- `per_device_eval_batch_size`: 64
- `num_train_epochs`: 8
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters