---
base_model: sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
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 CBSA name and type in York, ME?
sentences:
- average household income refers to avg_income_per_household; city known as "Danzig"
refers to bad_alias = 'Danzig';
- coordinates refers to latitude, longitude; latitude = '18.090875; longitude =
'-66.867756'
- '"York" is the city; ''ME'' is the state; type refers to CBSA_type'
- source_sentence: What is the CBSA name and type in York, ME?
sentences:
- average household income refers to avg_income_per_household; city known as "Danzig"
refers to bad_alias = 'Danzig';
- Georgia is the name of the state, in which name = 'Georgia';
- '"York" is the city; ''ME'' is the state; type refers to CBSA_type'
- source_sentence: Please list the Asian populations of all the residential areas
with the bad alias "URB San Joaquin".
sentences:
- '"Berlin, NH" is the CBSA_name'
- DIVIDE(COUNT(zip_code where type = 'Post Office'), COUNT(zip_code)) as percentage
where name = 'California';
- '"URB San Joaquin" is the bad_alias'
- source_sentence: What is the country and state of the city named Dalton?
sentences:
- name of the CBSA officer refers to CBSA_name; position of the CBSA officer refers
to CBSA_type;
- Dalton is the city;
- '"Berlin, NH" is the CBSA_name'
- source_sentence: How many zip codes are under Barre, VT?
sentences:
- '"Delaware" is a county; implement daylight savings refers to daylight_saving
= ''Yes'''
- the largest water area refers to MAX(water_area);
- '"Barre, VT" is the CBSA_name'
---
# SentenceTransformer based on sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2](https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-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/paraphrase-multilingual-MiniLM-L12-v2](https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2)
- **Maximum Sequence Length:** 128 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': 128, '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})
)
```
## 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/models")
# Run inference
sentences = [
'How many zip codes are under Barre, VT?',
'"Barre, VT" is the CBSA_name',
'the largest water area refers to MAX(water_area);',
]
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: 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 |
How many zip codes are under Barre, VT?
| "Barre, VT" is the CBSA_name
| postal points refer to zip_code; under New York-Newark-Jersey City, NY-NJ-PA refers to CBSA_name = 'New York-Newark-Jersey City, NY-NJ-PA';
|
| How many zip codes are under Barre, VT?
| "Barre, VT" is the CBSA_name
| the largest water area refers to MAX(water_area);
|
| What is the country and state of the city named Dalton?
| Dalton is the city;
| community post office type refers to type = 'Community Post Office'; elevation above 6000 refers to elevation > 6000;
|
* 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