---
base_model: intfloat/multilingual-e5-base
datasets: []
language: []
library_name: sentence-transformers
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:100
- loss:TripletLoss
widget:
- source_sentence: What is the average household income in the city known as "Danzig"?
sentences:
- the most bad aliases refer to MAX(COUNT(bad_alias));
- Greeneville is the city;
- average household income refers to avg_income_per_household; city known as "Danzig"
refers to bad_alias = 'Danzig';
- source_sentence: What is the average household income in the city known as "Danzig"?
sentences:
- '"Berlin, NH" is the CBSA_name'
- '"Puerto Rico" refers to state = ''PR'''
- average household income refers to avg_income_per_household; city known as "Danzig"
refers to bad_alias = 'Danzig';
- source_sentence: What is the country and state of the city named Dalton?
sentences:
- median age over 40 refers to median_age > 40
- DIVIDE(SUBTRACT(SUM(population_2020)), SUM(population_2010)), SUM(population_2010)
as percentage where county = 'ARROYO';
- Dalton is the city;
- source_sentence: What is the country and state of the city named Dalton?
sentences:
- community post office type refers to type = 'Community Post Office'; elevation
above 6000 refers to elevation > 6000;
- Dalton is the city;
- '"Berlin, NH" is the CBSA_name'
- source_sentence: List 10 cities with a median age over 40. Include their zip codes
and area codes.
sentences:
- '"URB San Joaquin" is the bad_alias'
- in California refers to name = 'California' and state = 'CA'; 'Community Post
Office' is the Type
- median age over 40 refers to median_age > 40
---
# SentenceTransformer based on intfloat/multilingual-e5-base
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [intfloat/multilingual-e5-base](https://huggingface.co/intfloat/multilingual-e5-base). It maps sentences & paragraphs to a 768-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:** [intfloat/multilingual-e5-base](https://huggingface.co/intfloat/multilingual-e5-base)
- **Maximum Sequence Length:** 512 tokens
- **Output Dimensionality:** 768 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': 512, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
(1): Pooling({'word_embedding_dimension': 768, '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("DariaaaS/e5-fine-tuned")
# Run inference
sentences = [
'List 10 cities with a median age over 40. Include their zip codes and area codes.',
'median age over 40 refers to median_age > 40',
"in California refers to name = 'California' and state = 'CA'; 'Community Post Office' is the Type",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 100 training samples
* Columns: sentence_0
, sentence_1
, and sentence_2
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | sentence_2 |
|:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|
| type | string | string | string |
| details |
Among all the residential areas in Delaware, how many of them implement daylight saving?
| "Delaware" is a county; implement daylight savings refers to daylight_saving = 'Yes'
| DIVIDE(COUNT(zip_code where type = 'Post Office'), COUNT(zip_code)) as percentage where name = 'California';
|
| What is the country and state of the city named Dalton?
| Dalton is the city;
| average male median age refers to Divide (Sum(male_median_age), Count(county)); 'WINDHAM' is the county
|
| Among the residential areas with the bad alias "Internal Revenue Service", how many of them are in the Eastern time zone?
| "Internal Revenue Service" is the bad_alias; in Eastern time zone refers to time_zone = 'Eastern'
| "Berlin, NH" is the CBSA_name
|
* 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`: 10
- `per_device_eval_batch_size`: 10
- `num_train_epochs`: 5
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters