---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:2560698
- loss:ModifiedMatryoshkaLoss
base_model: google-bert/bert-base-multilingual-cased
widget:
- source_sentence: We got off the exit, we found a Shoney's restaurant.
sentences:
- Nos alejamos de la salida, comenzamos a buscar un -- encontramos un restaurante
Shoney's.
- Reduzcan sus emisiones de dióxido de carbono con todo el rango de opciones que
tienen y luego compren o adquieran compensaciones para el resto que no han reducido
completamente.
- En el momento que nos invitaron a ir allí teníamos sede en San Francisco. Así
que fuimos de un lado a otro durante el resto de 2009, pasando la mitad del tiempo
en el condado de Bertie.
- source_sentence: And in the audio world that's when the microphone gets too close
to its sound source, and then it gets in this self-destructive loop that creates
a very unpleasant sound.
sentences:
- Y, en el mundo del audio, es cuando el micrófono se acerca demasiado a su fuente
de sonido, y entra en este bucle autodestructivo que crea un sonido muy desagradable.
- Tiene que ayudarles a alcanzar un compromiso equitativo, y a asegurar que una
amplia coalición de partidarios locales regionales e internacionales les ayuden
a implementar el acuerdo.
- Y es un renegado y visionario absoluto, y esa es la razón por la que ahora vivo
y trabajo allí.
- source_sentence: Figure out some of the other options that are much better.
sentences:
- Así que no sólo estamos reclutando a las multinacionales, les estamos dando las
herramientas para entregar este bien público, el respeto por los Derechos Humanos,
y lo estamos verificando.
- Piensen en otras de las opciones que son mucho mejores.
- Termina la propiedad comunal de las tierras de reserva.
- source_sentence: He is 16 years old, loves hunting and fishing and being outside
and doing anything with his hands, and so for him, Studio H means that he can
stay interested in his education through that hands-on engagement.
sentences:
- Tiene 16 años, le encanta cazar, pescar y estar al aire libre y hacer tareas manuales.
Para él Studio H representa el nexo educativo mediante esa motivación práctica.
- Carbón capturado y secuestrado -- eso es lo que CCS significa -- es probable que
se convierta en la aplicación determinante que nos posibilitará continuar utilizando
combustibles fósiles en un modo que sea seguro.
- El condado de Bertie no es la excepción.
- source_sentence: There are thousands of these blue dots all over the county.
sentences:
- Me gusta crisis climática en vez de colapso climático, pero de nuevo, aquellos
de ustedes que son buenos en diseño de marcas, necesito su ayuda en esto.
- Si miran con cuidado, se ve que su cráneo ha sido sustituido por una cúpula transparente
de plexiglás así que el funcionamiento de su cerebro se puede observar y controlar
con luz.
- Hay miles de estos puntos azules en todo el condado.
pipeline_tag: sentence-similarity
library_name: sentence-transformers
metrics:
- negative_mse
model-index:
- name: SentenceTransformer based on google-bert/bert-base-multilingual-cased
results:
- task:
type: knowledge-distillation
name: Knowledge Distillation
dataset:
name: MSE val en es
type: MSE-val-en-es
metrics:
- type: negative_mse
value: -31.070706248283386
name: Negative Mse
- task:
type: knowledge-distillation
name: Knowledge Distillation
dataset:
name: MSE val en pt
type: MSE-val-en-pt
metrics:
- type: negative_mse
value: -31.284737586975098
name: Negative Mse
- task:
type: knowledge-distillation
name: Knowledge Distillation
dataset:
name: MSE val en pt br
type: MSE-val-en-pt-br
metrics:
- type: negative_mse
value: -29.748335480690002
name: Negative Mse
---
# SentenceTransformer based on google-bert/bert-base-multilingual-cased
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [google-bert/bert-base-multilingual-cased](https://huggingface.co/google-bert/bert-base-multilingual-cased). 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:** [google-bert/bert-base-multilingual-cased](https://huggingface.co/google-bert/bert-base-multilingual-cased)
- **Maximum Sequence Length:** 128 tokens
- **Output Dimensionality:** 768 dimensions
- **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': 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})
)
```
## 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("luanafelbarros/bert-en-es-pt-matryoshka_v1")
# Run inference
sentences = [
'There are thousands of these blue dots all over the county.',
'Hay miles de estos puntos azules en todo el condado.',
'Me gusta crisis climática en vez de colapso climático, pero de nuevo, aquellos de ustedes que son buenos en diseño de marcas, necesito su ayuda en esto.',
]
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]
```
## Evaluation
### Metrics
#### Knowledge Distillation
* Datasets: `MSE-val-en-es`, `MSE-val-en-pt` and `MSE-val-en-pt-br`
* Evaluated with [MSEEvaluator
](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.evaluation.MSEEvaluator)
| Metric | MSE-val-en-es | MSE-val-en-pt | MSE-val-en-pt-br |
|:-----------------|:--------------|:--------------|:-----------------|
| **negative_mse** | **-31.0707** | **-31.2847** | **-29.7483** |
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 2,560,698 training samples
* Columns: english
, non_english
, and label
* Approximate statistics based on the first 1000 samples:
| | english | non_english | label |
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-------------------------------------|
| type | string | string | list |
| details |
And then there are certain conceptual things that can also benefit from hand calculating, but I think they're relatively small in number.
| Y luego hay ciertas aspectos conceptuales que pueden beneficiarse del cálculo a mano pero creo que son relativamente pocos.
| [-0.015244179405272007, 0.04601434990763664, -0.052873335778713226, 0.03535117208957672, -0.039562877267599106, ...]
|
| One thing I often ask about is ancient Greek and how this relates.
| Algo que pregunto a menudo es sobre el griego antiguo y cómo se relaciona.
| [0.0012022971641272306, -0.009590390138328075, -0.032977133989334106, 0.017047710716724396, -0.0028919472824782133, ...]
|
| See, the thing we're doing right now is we're forcing people to learn mathematics.
| Vean, lo que estamos haciendo ahora es forzar a la gente a aprender matemáticas.
| [-0.01942082867026329, 0.1043599545955658, 0.009455358609557152, -0.02814248949289322, -0.017036128789186478, ...]
|
* Loss: __main__.ModifiedMatryoshkaLoss
with these parameters:
```json
{
"loss": "MSELoss",
"matryoshka_dims": [
768,
512,
256,
128,
64
],
"matryoshka_weights": [
1,
1,
1,
1,
1
],
"n_dims_per_step": -1
}
```
### Evaluation Dataset
#### Unnamed Dataset
* Size: 6,974 evaluation samples
* Columns: english
, non_english
, and label
* Approximate statistics based on the first 1000 samples:
| | english | non_english | label |
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-------------------------------------|
| type | string | string | list |
| details | Thank you so much, Chris.
| Muchas gracias Chris.
| [-0.0616779625415802, -0.04450426995754242, -0.03250579163432121, -0.06641441583633423, 0.003981655463576317, ...]
|
| And it's truly a great honor to have the opportunity to come to this stage twice; I'm extremely grateful.
| Y es en verdad un gran honor tener la oportunidad de venir a este escenario por segunda vez. Estoy extremadamente agradecido.
| [0.011398598551750183, -0.02500401996076107, -0.009884790517389774, 0.009336900897324085, 0.003082842566072941, ...]
|
| I have been blown away by this conference, and I want to thank all of you for the many nice comments about what I had to say the other night.
| He quedado conmovido por esta conferencia, y deseo agradecer a todos ustedes sus amables comentarios acerca de lo que tenía que decir la otra noche.
| [-0.03842132166028023, 0.03635749593377113, -0.02491452544927597, -0.0032229204662144184, 0.0003549510147422552, ...]
|
* Loss: __main__.ModifiedMatryoshkaLoss
with these parameters:
```json
{
"loss": "MSELoss",
"matryoshka_dims": [
768,
512,
256,
128,
64
],
"matryoshka_weights": [
1,
1,
1,
1,
1
],
"n_dims_per_step": -1
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `eval_strategy`: steps
- `per_device_train_batch_size`: 200
- `per_device_eval_batch_size`: 200
- `learning_rate`: 2e-05
- `num_train_epochs`: 1
- `warmup_ratio`: 0.1
- `fp16`: True
- `label_names`: ['label']
#### All Hyperparameters