---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:2806
- loss:TripletLoss
base_model: intfloat/e5-large-v2
widget:
- source_sentence: What kind of interests do Joanna and Nate share?
sentences:
- '[4:21 pm on 16 July, 2023] John: John scored 40 points in a game last week, his
highest ever.'
- '[2:01 pm on 23 January, 2022] Nate: Thanks! The turtles might be small, but both
sure have big personalities. I really reccomend having something like these little
guys for times of stress.'
- '[11:54 am on 2 May, 2022] Joanna: Joanna has been working on some projects and
testing dairy-free dessert recipes for friends and family.'
- source_sentence: What is Dave's favorite activity?
sentences:
- '[11:53 am on 23 March, 2023] Calvin: I''m so excited to learn about Japanese
culture and get a chance to expand.'
- '[2:55 pm on 31 August, 2023] Calvin: Yeah, Dave! It''s like every mark and strum
holds a story. Take a look.'
- '[3:13 pm on 8 October, 2023] Dave: Restoring things can be tough for Dave, but
the feeling of accomplishment it gives him is great.'
- source_sentence: What health issue did Sam face that motivated him to change his
lifestyle?
sentences:
- '[12:17 am on 10 January, 2024] Sam: Sam planned to make an appointment with the
doctor to get advice on a balanced diet plan and low-impact exercises.'
- '[1:32 pm on 6 January, 2024] Evan: Thanks, Sam! Catch you later. Have a great
one!'
- '[4:25 pm on 26 December, 2023] Evan: Evan created a painting that reflects a
sense of joy and freedom.'
- source_sentence: When is Evan planning a big family reunion?
sentences:
- '[3:55 pm on 6 June, 2023] Evan: Awesome, Sam! Let me know how it goes. Making
small changes can really help you live a healthier life. Don''t forget - every
step matters!'
- '[1:45 pm on 9 December, 2023] Evan: Evan is planning a big family reunion next
summer to create more memories with family.'
- '[2:42 pm on 2 April, 2023] Andrew: Thanks! Fingers crossed for the apartment
and that furry friend.'
- source_sentence: When did Evan finish the painting that's hanging in the exhibit?
sentences:
- '[6:48 pm on 17 December, 2023] Evan: Yeah, trying something new and succeeding
gives a great feeling of accomplishment. Give it a go, even if it''s just a little
thing. You''ll be amazed!'
- '[7:52 pm on 7 August, 2023] Evan: Yep, Sam! Consistency and perseverance will
get us far. Great chat!'
- '[1:24 pm on 25 May, 2023] Maria: Maria is busy at the shelter preparing for a
fundraiser to cover basic needs for the homeless.'
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on intfloat/e5-large-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [intfloat/e5-large-v2](https://huggingface.co/intfloat/e5-large-v2). 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:** [intfloat/e5-large-v2](https://huggingface.co/intfloat/e5-large-v2)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 1024 dimensions
- **Similarity Function:** Cosine Similarity
- **Supported Modality:** Text
### 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': 'BertModel'})
(1): Pooling({'embedding_dimension': 1024, 'pooling_mode': 'mean', '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("ainativestudio/locomo-e5-large-finetuned")
# Run inference
sentences = [
"When did Evan finish the painting that's hanging in the exhibit?",
"[6:48 pm on 17 December, 2023] Evan: Yeah, trying something new and succeeding gives a great feeling of accomplishment. Give it a go, even if it's just a little thing. You'll be amazed!",
'[7:52 pm on 7 August, 2023] Evan: Yep, Sam! Consistency and perseverance will get us far. Great chat!',
]
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.9972, -0.9972],
# [-0.9972, 1.0000, 1.0000],
# [-0.9972, 1.0000, 1.0000]])
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 2,806 training samples
* Columns: sentence_0, sentence_1, and sentence_2
* Approximate statistics based on the first 100 samples:
| | sentence_0 | sentence_1 | sentence_2 |
|:---------|:---------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|
| type | string | string | string |
| modality | text | text | text |
| details |
When did Caroline pass the adoption interview? | [9:55 am on 22 October, 2023] Caroline: Caroline passed the adoption agency interviews last Friday and is excited about building her own family through adoption. | [7:55 pm on 9 June, 2023] Melanie: Melanie is supportive of Caroline and proud of her for spreading awareness and inspiring others in the LGBTQ community. |
| How many dogs does Andrew have? | [6:12 pm on 19 October, 2023] Andrew: Andrew adopted another pup from a shelter and named him Buddy. | [1:10 pm on 27 March, 2023] Andrew: Fox Hollow is a great trail to hike on weekends; the views are awesome! |
| Why did Audrey think positive reinforcement training is important for pets? | [2:03 pm on 11 May, 2023] Audrey: Audrey believes in using positive reinforcement rather than punishment to train pets. | [5:41 pm on 3 May, 2023] Audrey: Audrey's dogs wear party hats for fun and treats. |
* Loss: [TripletLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#tripletloss) with these parameters:
```json
{
"distance_metric": "TripletDistanceMetric.EUCLIDEAN",
"triplet_margin": 5
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 2
- `per_device_eval_batch_size`: 2
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters