---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:16000
- loss:CoSENTLoss
base_model: abdeljalilELmajjodi/model
widget:
- source_sentence: A man and woman are walking in a restaurant that has signs in Chinese.
sentences:
- A newlywed couple is walking through a Chinese restaurant.
- The woman is sitting on the ground.
- they are playing basketball
- source_sentence: Several Asian cooks in a kitchen wearing white Dress Shirts.
sentences:
- A group of women carry woven baskets and large red rugs as they walk down a street.
- A group of people is observing aquatic life.
- Severl cooks are in a kitchen.
- source_sentence: An Asian fish market with fish being cut up for sale.
sentences:
- A man in a blue and white shirt buys fish.
- Fish are being sold.
- The only amish person to own a cellphone.
- source_sentence: An Asian man pushing a wheelchair.
sentences:
- A surfer is in the water.
- There are at least four people.
- A girl sitting in a wheelchair waiting for a friend.
- source_sentence: Seven people are wading in a natural pool.
sentences:
- there were five people
- A man is standing alone.
- The man is riding a unicycle.
pipeline_tag: sentence-similarity
library_name: sentence-transformers
metrics:
- pearson_cosine
- spearman_cosine
model-index:
- name: SentenceTransformer based on abdeljalilELmajjodi/model
results:
- task:
type: semantic-similarity
name: Semantic Similarity
dataset:
name: pair score evaluator dev
type: pair-score-evaluator-dev
metrics:
- type: pearson_cosine
value: 0.6451319585193018
name: Pearson Cosine
- type: spearman_cosine
value: 0.6628169159235177
name: Spearman Cosine
---
# SentenceTransformer based on abdeljalilELmajjodi/model
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [abdeljalilELmajjodi/model](https://huggingface.co/abdeljalilELmajjodi/model) on the all-nli dataset. It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for retrieval.
## Model Details
### Model Description
- **Model Type:** Sentence Transformer
- **Base model:** [abdeljalilELmajjodi/model](https://huggingface.co/abdeljalilELmajjodi/model)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 1024 dimensions
- **Similarity Function:** Cosine Similarity
- **Supported Modality:** Text
- **Training Dataset:**
- all-nli
### Model Sources
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
- **Repository:** [Sentence Transformers on GitHub](https://github.com/huggingface/sentence-transformers)
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
### Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'XLMRobertaModel'})
(1): Pooling({'embedding_dimension': 1024, 'pooling_mode': 'mean', '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 = [
'Seven people are wading in a natural pool.',
'there were five people',
'The man is riding a unicycle.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.7814, 0.6510],
# [0.7814, 1.0000, 0.7047],
# [0.6510, 0.7047, 1.0000]])
```
## Evaluation
### Metrics
#### Semantic Similarity
* Dataset: `pair-score-evaluator-dev`
* Evaluated with [EmbeddingSimilarityEvaluator](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.sentence_transformer.evaluation.EmbeddingSimilarityEvaluator)
| Metric | Value |
|:--------------------|:-----------|
| pearson_cosine | 0.6451 |
| **spearman_cosine** | **0.6628** |
## Training Details
### Training Dataset
#### all-nli
* Dataset: all-nli
* Size: 16,000 training samples
* Columns: sentence1, sentence2, and score
* Approximate statistics based on the first 1000 samples:
| | sentence1 | sentence2 | score |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------|
| type | string | string | float |
| details |
A man in a white shirt is on a rooftop lifting a board. | A man has a white shirt. | 1.0 |
| Two men in shorts and sandals are carrying food and drinks at a farmers market. | Men shopping their local market. | 1.0 |
| A woman with her head down is in a very run down area. | the man in a suit talks on his cellphone | 0.0 |
* Loss: [CoSENTLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosentloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "pairwise_cos_sim"
}
```
### Evaluation Dataset
#### all-nli
* Dataset: all-nli
* Size: 4,000 evaluation samples
* Columns: sentence1, sentence2, and score
* Approximate statistics based on the first 1000 samples:
| | sentence1 | sentence2 | score |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------|
| type | string | string | float |
| details | A person dressed in natural clothing taking their picture in a mirror. | the person is nude at the bay | 0.0 |
| A basketball team of 8 girls is doing a hand huddle. | An all girls basketball team gets ready to start a game. | 1.0 |
| A person in a tan and blue sweater hanging clothes on a clothesline outside the window of her building. | There are no clothes. | 0.0 |
* Loss: [CoSENTLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosentloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "pairwise_cos_sim"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_eval_batch_size`: 16
- `gradient_accumulation_steps`: 4
- `learning_rate`: 2e-05
- `num_train_epochs`: 4
- `warmup_steps`: 0.05
- `bf16`: True
- `bf16_full_eval`: True
- `dataloader_num_workers`: 4
- `load_best_model_at_end`: True
- `push_to_hub`: True
- `gradient_checkpointing`: True
#### All Hyperparameters