Add new SentenceTransformer model
Browse files- .gitattributes +1 -0
- 1_MultiHeadGeneralizedPooling/config.json +7 -0
- README.md +438 -0
- config.json +29 -0
- config_sentence_transformers.json +10 -0
- model.safetensors +3 -0
- modules.json +14 -0
- sentence_bert_config.json +4 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +51 -0
- tokenizer.json +3 -0
- tokenizer_config.json +62 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
1_MultiHeadGeneralizedPooling/config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sentence_dim": 768,
|
| 3 |
+
"token_dim": 768,
|
| 4 |
+
"num_heads": 8,
|
| 5 |
+
"initialize": 2,
|
| 6 |
+
"pooling_type": 1
|
| 7 |
+
}
|
README.md
ADDED
|
@@ -0,0 +1,438 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- sentence-transformers
|
| 4 |
+
- sentence-similarity
|
| 5 |
+
- feature-extraction
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- dataset_size:4460010
|
| 8 |
+
- loss:CoSENTLoss
|
| 9 |
+
base_model: RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel
|
| 10 |
+
widget:
|
| 11 |
+
- source_sentence: Malformed target specific variable definition
|
| 12 |
+
sentences:
|
| 13 |
+
- Hedefe özgü değişken tanımı bozuk
|
| 14 |
+
- Kan alle data in die gids lees
|
| 15 |
+
- "слава Украине! героям слава!\uFEFF"
|
| 16 |
+
- source_sentence: Can't write an inode bitmap
|
| 17 |
+
sentences:
|
| 18 |
+
- Skontrolujte stav aktualizácií alebo to skúste znova neskôr.
|
| 19 |
+
- Malsukcesis skribi i nodan bitmapon
|
| 20 |
+
- Zastępuje wersję GL obsługiwaną przez sterownik
|
| 21 |
+
- source_sentence: Optimize soft proofing color transformations
|
| 22 |
+
sentences:
|
| 23 |
+
- 'arkadaslar biz artik her an kirmizi kart yiyecek,bencil,pas yapamayan,isabetsiz
|
| 24 |
+
orta yapani istemiyoruz. sozde efsaneniz bu sezon Besiktasa en cok zarar verenlerden
|
| 25 |
+
biriydi. kendini dusunmeden once Besiktasi dusunecek adam lazim bize. o yuzden
|
| 26 |
+
#GoHomeQuaresma'
|
| 27 |
+
- Yav bizim dedikodusunu yaptığımız insanın bile bi vizyonu var. Senin hakkında
|
| 28 |
+
neden oturup konuşalım?
|
| 29 |
+
- Ik ben een transgender.
|
| 30 |
+
- source_sentence: 'Pass 1: Checking @is, @bs, and sizes'
|
| 31 |
+
sentences:
|
| 32 |
+
- Bu adam cidden kurabiye gibi ben bunu çayın yanında yerim
|
| 33 |
+
- sagnat. errada. invisible. justificació. idioma
|
| 34 |
+
- Wilt u echt de primaire sleutel verplaatsen? (j N)
|
| 35 |
+
- source_sentence: Search for matching log entries
|
| 36 |
+
sentences:
|
| 37 |
+
- quem te lembra? caralho tô assustada aqui kkkkk
|
| 38 |
+
- sendotasunik gabeko\ egoera bistaratuko den ala ez adierazten du
|
| 39 |
+
- En aquest cas, hem d'incloure les imatges del contenidor )sr iov per a càrregues
|
| 40 |
+
de treball de telco (per exemple, com a referència, es podrien obtenir des de
|
| 41 |
+
valors de helm chart)
|
| 42 |
+
datasets:
|
| 43 |
+
- RomainDarous/corrupted_os_by_language
|
| 44 |
+
pipeline_tag: sentence-similarity
|
| 45 |
+
library_name: sentence-transformers
|
| 46 |
+
metrics:
|
| 47 |
+
- pearson_cosine
|
| 48 |
+
- spearman_cosine
|
| 49 |
+
model-index:
|
| 50 |
+
- name: SentenceTransformer based on RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel
|
| 51 |
+
results:
|
| 52 |
+
- task:
|
| 53 |
+
type: semantic-similarity
|
| 54 |
+
name: Semantic Similarity
|
| 55 |
+
dataset:
|
| 56 |
+
name: sts eval
|
| 57 |
+
type: sts-eval
|
| 58 |
+
metrics:
|
| 59 |
+
- type: pearson_cosine
|
| 60 |
+
value: 0.9735135845648475
|
| 61 |
+
name: Pearson Cosine
|
| 62 |
+
- type: spearman_cosine
|
| 63 |
+
value: 0.8655948650423116
|
| 64 |
+
name: Spearman Cosine
|
| 65 |
+
- task:
|
| 66 |
+
type: semantic-similarity
|
| 67 |
+
name: Semantic Similarity
|
| 68 |
+
dataset:
|
| 69 |
+
name: sts test
|
| 70 |
+
type: sts-test
|
| 71 |
+
metrics:
|
| 72 |
+
- type: pearson_cosine
|
| 73 |
+
value: 0.9734781721457446
|
| 74 |
+
name: Pearson Cosine
|
| 75 |
+
- type: spearman_cosine
|
| 76 |
+
value: 0.8655930560995988
|
| 77 |
+
name: Spearman Cosine
|
| 78 |
+
---
|
| 79 |
+
|
| 80 |
+
# SentenceTransformer based on RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel
|
| 81 |
+
|
| 82 |
+
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel](https://huggingface.co/RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel) on the [corrupted_open_os_by_language](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language) dataset. 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.
|
| 83 |
+
|
| 84 |
+
## Model Details
|
| 85 |
+
|
| 86 |
+
### Model Description
|
| 87 |
+
- **Model Type:** Sentence Transformer
|
| 88 |
+
- **Base model:** [RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel](https://huggingface.co/RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel) <!-- at revision dd0b01d54424c5901766aef92030933b3d2c4076 -->
|
| 89 |
+
- **Maximum Sequence Length:** 128 tokens
|
| 90 |
+
- **Output Dimensionality:** 768 dimensions
|
| 91 |
+
- **Similarity Function:** Cosine Similarity
|
| 92 |
+
- **Training Dataset:**
|
| 93 |
+
- [corrupted_open_os_by_language](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language)
|
| 94 |
+
<!-- - **Language:** Unknown -->
|
| 95 |
+
<!-- - **License:** Unknown -->
|
| 96 |
+
|
| 97 |
+
### Model Sources
|
| 98 |
+
|
| 99 |
+
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
|
| 100 |
+
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
|
| 101 |
+
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
|
| 102 |
+
|
| 103 |
+
### Full Model Architecture
|
| 104 |
+
|
| 105 |
+
```
|
| 106 |
+
SentenceTransformer(
|
| 107 |
+
(0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
|
| 108 |
+
(1): MultiHeadGeneralizedPooling()
|
| 109 |
+
)
|
| 110 |
+
```
|
| 111 |
+
|
| 112 |
+
## Usage
|
| 113 |
+
|
| 114 |
+
### Direct Usage (Sentence Transformers)
|
| 115 |
+
|
| 116 |
+
First install the Sentence Transformers library:
|
| 117 |
+
|
| 118 |
+
```bash
|
| 119 |
+
pip install -U sentence-transformers
|
| 120 |
+
```
|
| 121 |
+
|
| 122 |
+
Then you can load this model and run inference.
|
| 123 |
+
```python
|
| 124 |
+
from sentence_transformers import SentenceTransformer
|
| 125 |
+
|
| 126 |
+
# Download from the 🤗 Hub
|
| 127 |
+
model = SentenceTransformer("RomainDarous/large_directTwoEpoch_maxPooling_mistranslationModel")
|
| 128 |
+
# Run inference
|
| 129 |
+
sentences = [
|
| 130 |
+
'Search for matching log entries',
|
| 131 |
+
'quem te lembra? caralho tô assustada aqui kkkkk',
|
| 132 |
+
'sendotasunik gabeko\\ egoera bistaratuko den ala ez adierazten du',
|
| 133 |
+
]
|
| 134 |
+
embeddings = model.encode(sentences)
|
| 135 |
+
print(embeddings.shape)
|
| 136 |
+
# [3, 768]
|
| 137 |
+
|
| 138 |
+
# Get the similarity scores for the embeddings
|
| 139 |
+
similarities = model.similarity(embeddings, embeddings)
|
| 140 |
+
print(similarities.shape)
|
| 141 |
+
# [3, 3]
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
<!--
|
| 145 |
+
### Direct Usage (Transformers)
|
| 146 |
+
|
| 147 |
+
<details><summary>Click to see the direct usage in Transformers</summary>
|
| 148 |
+
|
| 149 |
+
</details>
|
| 150 |
+
-->
|
| 151 |
+
|
| 152 |
+
<!--
|
| 153 |
+
### Downstream Usage (Sentence Transformers)
|
| 154 |
+
|
| 155 |
+
You can finetune this model on your own dataset.
|
| 156 |
+
|
| 157 |
+
<details><summary>Click to expand</summary>
|
| 158 |
+
|
| 159 |
+
</details>
|
| 160 |
+
-->
|
| 161 |
+
|
| 162 |
+
<!--
|
| 163 |
+
### Out-of-Scope Use
|
| 164 |
+
|
| 165 |
+
*List how the model may foreseeably be misused and address what users ought not to do with the model.*
|
| 166 |
+
-->
|
| 167 |
+
|
| 168 |
+
## Evaluation
|
| 169 |
+
|
| 170 |
+
### Metrics
|
| 171 |
+
|
| 172 |
+
#### Semantic Similarity
|
| 173 |
+
|
| 174 |
+
* Datasets: `sts-eval` and `sts-test`
|
| 175 |
+
* Evaluated with [<code>EmbeddingSimilarityEvaluator</code>](https://sbert.net/docs/package_reference/sentence_transformer/evaluation.html#sentence_transformers.evaluation.EmbeddingSimilarityEvaluator)
|
| 176 |
+
|
| 177 |
+
| Metric | sts-eval | sts-test |
|
| 178 |
+
|:--------------------|:-----------|:-----------|
|
| 179 |
+
| pearson_cosine | 0.9735 | 0.9735 |
|
| 180 |
+
| **spearman_cosine** | **0.8656** | **0.8656** |
|
| 181 |
+
|
| 182 |
+
<!--
|
| 183 |
+
## Bias, Risks and Limitations
|
| 184 |
+
|
| 185 |
+
*What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
|
| 186 |
+
-->
|
| 187 |
+
|
| 188 |
+
<!--
|
| 189 |
+
### Recommendations
|
| 190 |
+
|
| 191 |
+
*What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
|
| 192 |
+
-->
|
| 193 |
+
|
| 194 |
+
## Training Details
|
| 195 |
+
|
| 196 |
+
### Training Dataset
|
| 197 |
+
|
| 198 |
+
#### corrupted_open_os_by_language
|
| 199 |
+
|
| 200 |
+
* Dataset: [corrupted_open_os_by_language](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language) at [9d25780](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language/tree/9d25780e2032b1e8f06af6a4ff55124d7a930c3c)
|
| 201 |
+
* Size: 4,460,010 training samples
|
| 202 |
+
* Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
|
| 203 |
+
* Approximate statistics based on the first 1000 samples:
|
| 204 |
+
| | sentence1 | sentence2 | score |
|
| 205 |
+
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:------------------------------------------------|
|
| 206 |
+
| type | string | string | int |
|
| 207 |
+
| details | <ul><li>min: 6 tokens</li><li>mean: 18.33 tokens</li><li>max: 128 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 26.47 tokens</li><li>max: 128 tokens</li></ul> | <ul><li>0: ~50.60%</li><li>1: ~49.40%</li></ul> |
|
| 208 |
+
* Samples:
|
| 209 |
+
| sentence1 | sentence2 | score |
|
| 210 |
+
|:--------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:---------------|
|
| 211 |
+
| <code>Check spelling. Print the document. Show completion window. General. Show help</code> | <code>Kontrolli õigekirja. присоединяюсь. </code> | <code>0</code> |
|
| 212 |
+
| <code>EXIF not supported for this file format.</code> | <code>Šiam failo formatui EXIF nepalaikomas.</code> | <code>1</code> |
|
| 213 |
+
| <code>This package includes the documentation for texlive everyhook</code> | <code>Paket ini menyertakan dokumentasi untuk texlive everyhook</code> | <code>1</code> |
|
| 214 |
+
* Loss: [<code>CoSENTLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosentloss) with these parameters:
|
| 215 |
+
```json
|
| 216 |
+
{
|
| 217 |
+
"scale": 20.0,
|
| 218 |
+
"similarity_fct": "pairwise_cos_sim"
|
| 219 |
+
}
|
| 220 |
+
```
|
| 221 |
+
|
| 222 |
+
### Evaluation Dataset
|
| 223 |
+
|
| 224 |
+
#### corrupted_open_os_by_language
|
| 225 |
+
|
| 226 |
+
* Dataset: [corrupted_open_os_by_language](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language) at [9d25780](https://huggingface.co/datasets/RomainDarous/corrupted_os_by_language/tree/9d25780e2032b1e8f06af6a4ff55124d7a930c3c)
|
| 227 |
+
* Size: 4,460,010 evaluation samples
|
| 228 |
+
* Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
|
| 229 |
+
* Approximate statistics based on the first 1000 samples:
|
| 230 |
+
| | sentence1 | sentence2 | score |
|
| 231 |
+
|:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:------------------------------------------------|
|
| 232 |
+
| type | string | string | int |
|
| 233 |
+
| details | <ul><li>min: 5 tokens</li><li>mean: 17.71 tokens</li><li>max: 128 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 26.95 tokens</li><li>max: 128 tokens</li></ul> | <ul><li>0: ~50.60%</li><li>1: ~49.40%</li></ul> |
|
| 234 |
+
* Samples:
|
| 235 |
+
| sentence1 | sentence2 | score |
|
| 236 |
+
|:----------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------|
|
| 237 |
+
| <code>Could not identify the current seat.</code> | <code> 天天花着男人的钱还这这创造新词汇男权你可真牛批,你也就这一出了一问男权,就说是我是吧,到现在我也没听到你给我们讲的男权,你也就是在网上喷喷,现实走道都不敢探头自卑,你现实要把你女权的劲拿出来总低啥头,您老应该去国家教育局把男权加上是吧,你们女权天天说自己生活不好没地位,给你们地位了你们能干啥?用你们的女权打到全世界男性是吧,能相出男权这一词您老也是人才呀,是不是庆幸自己是个女的,活在自己想想的世界里不觉得孤单吗,假象有男权是吧,自己假象和男权还说自己不是田园女权,田园女权能连自己都骂说自己妈是驴爸是大鼎的也是奇葩呀,那我们国家大肆宣扬过你们这么田园女权吗,国家要的是女性人群自主自理,你们可好看看你们女权干的啥事,给你们女权地位高了,看看你们女权干的事n绿地集团高管怎么都不说呀,人家可是有钱有地位,也不是我们说三从四德洗衣做饭你们女权会吗?,那我问问你们女权干过啥惊天大事,还甩锅给孔子,还封建社会,那我问问你们女权在福利面前为啥说自己是女性呀不是社会主义社会吗不应该男女平等吗,天天自己也不知道是不是抱个手机天天欧巴欧巴,你家那位要是不陪你看一会就会问你是不是不爱我了是吧大姐,您老也就赚这白菜钱操心国家事,中国五千年的历史被您老一句否决,还嘲讽人家日本女性,好意思说自己不是女权,三从四德流传这么久到您这变成日本文化了,我就想问问男权您老是怎么想的,那你问孔子老人家呗为什么女人要三从四德,我说的是女权你干嘛自己对号入座,连中华人民传承的东西都不认跟我这谈男权,还男权您老给我举个例子呗,让我们男权听听都是h啥,这些不都是你们女权的标准吗?,还男权,您老醒醒吧这里是现实,不是你的公主世界,总觉得自己多么多么重要,地球没你是不能转了还是人类要灭亡呀,我真的想问一句你给我找一条男权的新��,咋了我们男人不能提女权呗你老授权了呗,那我们谈论田园女权你老对号入座干嘛,天天过节要礼物,还嫌弃自己男朋友没有钱,我寻思你找个有钱人包养你呗,对了有钱人怎么可能看上你这种女权的呢,还要孩子跟女方姓我也没看见你没跟你妈姓呀,年年过节男人给你们送礼物你们女人给男人送过礼物吗?,一问我不是陪着他吗我对他说我爱你了这不是最好的礼物吗?,男人只要不送礼物就是不爱你们了呗,人家国际女权讲的男人能做的我们女人也能做,田园女权男人能做的我们女人为啥要做,还男权我笑了,以前结婚几头牛换个衣服原装的,现在几十万彩...</code> | <code>0</code> |
|
| 238 |
+
| <code>Undoing Date and Time Adjustment</code> | <code>正在取消日期和时间调整</code> | <code>1</code> |
|
| 239 |
+
| <code>Dependency package for gsl_2_6 gnu hpc</code> | <code>Pacotes de desenvolvimento do KDE</code> | <code>1</code> |
|
| 240 |
+
* Loss: [<code>CoSENTLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosentloss) with these parameters:
|
| 241 |
+
```json
|
| 242 |
+
{
|
| 243 |
+
"scale": 20.0,
|
| 244 |
+
"similarity_fct": "pairwise_cos_sim"
|
| 245 |
+
}
|
| 246 |
+
```
|
| 247 |
+
|
| 248 |
+
### Training Hyperparameters
|
| 249 |
+
#### Non-Default Hyperparameters
|
| 250 |
+
|
| 251 |
+
- `eval_strategy`: steps
|
| 252 |
+
- `per_device_train_batch_size`: 64
|
| 253 |
+
- `per_device_eval_batch_size`: 64
|
| 254 |
+
- `num_train_epochs`: 1
|
| 255 |
+
- `warmup_ratio`: 0.1
|
| 256 |
+
|
| 257 |
+
#### All Hyperparameters
|
| 258 |
+
<details><summary>Click to expand</summary>
|
| 259 |
+
|
| 260 |
+
- `overwrite_output_dir`: False
|
| 261 |
+
- `do_predict`: False
|
| 262 |
+
- `eval_strategy`: steps
|
| 263 |
+
- `prediction_loss_only`: True
|
| 264 |
+
- `per_device_train_batch_size`: 64
|
| 265 |
+
- `per_device_eval_batch_size`: 64
|
| 266 |
+
- `per_gpu_train_batch_size`: None
|
| 267 |
+
- `per_gpu_eval_batch_size`: None
|
| 268 |
+
- `gradient_accumulation_steps`: 1
|
| 269 |
+
- `eval_accumulation_steps`: None
|
| 270 |
+
- `torch_empty_cache_steps`: None
|
| 271 |
+
- `learning_rate`: 5e-05
|
| 272 |
+
- `weight_decay`: 0.0
|
| 273 |
+
- `adam_beta1`: 0.9
|
| 274 |
+
- `adam_beta2`: 0.999
|
| 275 |
+
- `adam_epsilon`: 1e-08
|
| 276 |
+
- `max_grad_norm`: 1.0
|
| 277 |
+
- `num_train_epochs`: 1
|
| 278 |
+
- `max_steps`: -1
|
| 279 |
+
- `lr_scheduler_type`: linear
|
| 280 |
+
- `lr_scheduler_kwargs`: {}
|
| 281 |
+
- `warmup_ratio`: 0.1
|
| 282 |
+
- `warmup_steps`: 0
|
| 283 |
+
- `log_level`: passive
|
| 284 |
+
- `log_level_replica`: warning
|
| 285 |
+
- `log_on_each_node`: True
|
| 286 |
+
- `logging_nan_inf_filter`: True
|
| 287 |
+
- `save_safetensors`: True
|
| 288 |
+
- `save_on_each_node`: False
|
| 289 |
+
- `save_only_model`: False
|
| 290 |
+
- `restore_callback_states_from_checkpoint`: False
|
| 291 |
+
- `no_cuda`: False
|
| 292 |
+
- `use_cpu`: False
|
| 293 |
+
- `use_mps_device`: False
|
| 294 |
+
- `seed`: 42
|
| 295 |
+
- `data_seed`: None
|
| 296 |
+
- `jit_mode_eval`: False
|
| 297 |
+
- `use_ipex`: False
|
| 298 |
+
- `bf16`: False
|
| 299 |
+
- `fp16`: False
|
| 300 |
+
- `fp16_opt_level`: O1
|
| 301 |
+
- `half_precision_backend`: auto
|
| 302 |
+
- `bf16_full_eval`: False
|
| 303 |
+
- `fp16_full_eval`: False
|
| 304 |
+
- `tf32`: None
|
| 305 |
+
- `local_rank`: 0
|
| 306 |
+
- `ddp_backend`: None
|
| 307 |
+
- `tpu_num_cores`: None
|
| 308 |
+
- `tpu_metrics_debug`: False
|
| 309 |
+
- `debug`: []
|
| 310 |
+
- `dataloader_drop_last`: False
|
| 311 |
+
- `dataloader_num_workers`: 0
|
| 312 |
+
- `dataloader_prefetch_factor`: None
|
| 313 |
+
- `past_index`: -1
|
| 314 |
+
- `disable_tqdm`: False
|
| 315 |
+
- `remove_unused_columns`: True
|
| 316 |
+
- `label_names`: None
|
| 317 |
+
- `load_best_model_at_end`: False
|
| 318 |
+
- `ignore_data_skip`: False
|
| 319 |
+
- `fsdp`: []
|
| 320 |
+
- `fsdp_min_num_params`: 0
|
| 321 |
+
- `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
|
| 322 |
+
- `fsdp_transformer_layer_cls_to_wrap`: None
|
| 323 |
+
- `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
|
| 324 |
+
- `deepspeed`: None
|
| 325 |
+
- `label_smoothing_factor`: 0.0
|
| 326 |
+
- `optim`: adamw_torch
|
| 327 |
+
- `optim_args`: None
|
| 328 |
+
- `adafactor`: False
|
| 329 |
+
- `group_by_length`: False
|
| 330 |
+
- `length_column_name`: length
|
| 331 |
+
- `ddp_find_unused_parameters`: None
|
| 332 |
+
- `ddp_bucket_cap_mb`: None
|
| 333 |
+
- `ddp_broadcast_buffers`: False
|
| 334 |
+
- `dataloader_pin_memory`: True
|
| 335 |
+
- `dataloader_persistent_workers`: False
|
| 336 |
+
- `skip_memory_metrics`: True
|
| 337 |
+
- `use_legacy_prediction_loop`: False
|
| 338 |
+
- `push_to_hub`: False
|
| 339 |
+
- `resume_from_checkpoint`: None
|
| 340 |
+
- `hub_model_id`: None
|
| 341 |
+
- `hub_strategy`: every_save
|
| 342 |
+
- `hub_private_repo`: None
|
| 343 |
+
- `hub_always_push`: False
|
| 344 |
+
- `gradient_checkpointing`: False
|
| 345 |
+
- `gradient_checkpointing_kwargs`: None
|
| 346 |
+
- `include_inputs_for_metrics`: False
|
| 347 |
+
- `include_for_metrics`: []
|
| 348 |
+
- `eval_do_concat_batches`: True
|
| 349 |
+
- `fp16_backend`: auto
|
| 350 |
+
- `push_to_hub_model_id`: None
|
| 351 |
+
- `push_to_hub_organization`: None
|
| 352 |
+
- `mp_parameters`:
|
| 353 |
+
- `auto_find_batch_size`: False
|
| 354 |
+
- `full_determinism`: False
|
| 355 |
+
- `torchdynamo`: None
|
| 356 |
+
- `ray_scope`: last
|
| 357 |
+
- `ddp_timeout`: 1800
|
| 358 |
+
- `torch_compile`: False
|
| 359 |
+
- `torch_compile_backend`: None
|
| 360 |
+
- `torch_compile_mode`: None
|
| 361 |
+
- `dispatch_batches`: None
|
| 362 |
+
- `split_batches`: None
|
| 363 |
+
- `include_tokens_per_second`: False
|
| 364 |
+
- `include_num_input_tokens_seen`: False
|
| 365 |
+
- `neftune_noise_alpha`: None
|
| 366 |
+
- `optim_target_modules`: None
|
| 367 |
+
- `batch_eval_metrics`: False
|
| 368 |
+
- `eval_on_start`: False
|
| 369 |
+
- `use_liger_kernel`: False
|
| 370 |
+
- `eval_use_gather_object`: False
|
| 371 |
+
- `average_tokens_across_devices`: False
|
| 372 |
+
- `prompts`: None
|
| 373 |
+
- `batch_sampler`: batch_sampler
|
| 374 |
+
- `multi_dataset_batch_sampler`: proportional
|
| 375 |
+
|
| 376 |
+
</details>
|
| 377 |
+
|
| 378 |
+
### Training Logs
|
| 379 |
+
| Epoch | Step | Training Loss | corrupted open os by language loss | sts-eval_spearman_cosine | sts-test_spearman_cosine |
|
| 380 |
+
|:-----:|:-----:|:-------------:|:----------------------------------:|:------------------------:|:------------------------:|
|
| 381 |
+
| 1.0 | 55751 | 0.2483 | 0.2853 | 0.8656 | - |
|
| 382 |
+
| -1 | -1 | - | - | - | 0.8656 |
|
| 383 |
+
|
| 384 |
+
|
| 385 |
+
### Framework Versions
|
| 386 |
+
- Python: 3.10.13
|
| 387 |
+
- Sentence Transformers: 3.4.1
|
| 388 |
+
- Transformers: 4.48.2
|
| 389 |
+
- PyTorch: 2.1.2+cu121
|
| 390 |
+
- Accelerate: 1.3.0
|
| 391 |
+
- Datasets: 2.16.1
|
| 392 |
+
- Tokenizers: 0.21.0
|
| 393 |
+
|
| 394 |
+
## Citation
|
| 395 |
+
|
| 396 |
+
### BibTeX
|
| 397 |
+
|
| 398 |
+
#### Sentence Transformers
|
| 399 |
+
```bibtex
|
| 400 |
+
@inproceedings{reimers-2019-sentence-bert,
|
| 401 |
+
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
|
| 402 |
+
author = "Reimers, Nils and Gurevych, Iryna",
|
| 403 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
|
| 404 |
+
month = "11",
|
| 405 |
+
year = "2019",
|
| 406 |
+
publisher = "Association for Computational Linguistics",
|
| 407 |
+
url = "https://arxiv.org/abs/1908.10084",
|
| 408 |
+
}
|
| 409 |
+
```
|
| 410 |
+
|
| 411 |
+
#### CoSENTLoss
|
| 412 |
+
```bibtex
|
| 413 |
+
@online{kexuefm-8847,
|
| 414 |
+
title={CoSENT: A more efficient sentence vector scheme than Sentence-BERT},
|
| 415 |
+
author={Su Jianlin},
|
| 416 |
+
year={2022},
|
| 417 |
+
month={Jan},
|
| 418 |
+
url={https://kexue.fm/archives/8847},
|
| 419 |
+
}
|
| 420 |
+
```
|
| 421 |
+
|
| 422 |
+
<!--
|
| 423 |
+
## Glossary
|
| 424 |
+
|
| 425 |
+
*Clearly define terms in order to be accessible across audiences.*
|
| 426 |
+
-->
|
| 427 |
+
|
| 428 |
+
<!--
|
| 429 |
+
## Model Card Authors
|
| 430 |
+
|
| 431 |
+
*Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
|
| 432 |
+
-->
|
| 433 |
+
|
| 434 |
+
<!--
|
| 435 |
+
## Model Card Contact
|
| 436 |
+
|
| 437 |
+
*Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
|
| 438 |
+
-->
|
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "RomainDarous/large_directOneEpoch_maxPooling_mistranslationModel",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"XLMRobertaModel"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"gradient_checkpointing": false,
|
| 11 |
+
"hidden_act": "gelu",
|
| 12 |
+
"hidden_dropout_prob": 0.1,
|
| 13 |
+
"hidden_size": 768,
|
| 14 |
+
"initializer_range": 0.02,
|
| 15 |
+
"intermediate_size": 3072,
|
| 16 |
+
"layer_norm_eps": 1e-05,
|
| 17 |
+
"max_position_embeddings": 514,
|
| 18 |
+
"model_type": "xlm-roberta",
|
| 19 |
+
"num_attention_heads": 12,
|
| 20 |
+
"num_hidden_layers": 12,
|
| 21 |
+
"output_past": true,
|
| 22 |
+
"pad_token_id": 1,
|
| 23 |
+
"position_embedding_type": "absolute",
|
| 24 |
+
"torch_dtype": "float32",
|
| 25 |
+
"transformers_version": "4.48.2",
|
| 26 |
+
"type_vocab_size": 1,
|
| 27 |
+
"use_cache": true,
|
| 28 |
+
"vocab_size": 250002
|
| 29 |
+
}
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"__version__": {
|
| 3 |
+
"sentence_transformers": "3.4.1",
|
| 4 |
+
"transformers": "4.48.2",
|
| 5 |
+
"pytorch": "2.1.2+cu121"
|
| 6 |
+
},
|
| 7 |
+
"prompts": {},
|
| 8 |
+
"default_prompt_name": null,
|
| 9 |
+
"similarity_fn_name": "cosine"
|
| 10 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8982bef0f90e663b5912db81da099f41ca8bbc32f80c4955caafb99adec78be
|
| 3 |
+
size 1112197096
|
modules.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"idx": 0,
|
| 4 |
+
"name": "0",
|
| 5 |
+
"path": "",
|
| 6 |
+
"type": "sentence_transformers.models.Transformer"
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"idx": 1,
|
| 10 |
+
"name": "1",
|
| 11 |
+
"path": "1_MultiHeadGeneralizedPooling",
|
| 12 |
+
"type": "sentence_generalized_pooling.multihead_generalized_pooling.MultiHeadGeneralizedPooling"
|
| 13 |
+
}
|
| 14 |
+
]
|
sentence_bert_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_length": 128,
|
| 3 |
+
"do_lower_case": false
|
| 4 |
+
}
|
sentencepiece.bpe.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
| 3 |
+
size 5069051
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cad551d5600a84242d0973327029452a1e3672ba6313c2a3c3d69c4310e12719
|
| 3 |
+
size 17082987
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "<s>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"1": {
|
| 12 |
+
"content": "<pad>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"2": {
|
| 20 |
+
"content": "</s>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"3": {
|
| 28 |
+
"content": "<unk>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"250001": {
|
| 36 |
+
"content": "<mask>",
|
| 37 |
+
"lstrip": true,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
"bos_token": "<s>",
|
| 45 |
+
"clean_up_tokenization_spaces": false,
|
| 46 |
+
"cls_token": "<s>",
|
| 47 |
+
"eos_token": "</s>",
|
| 48 |
+
"extra_special_tokens": {},
|
| 49 |
+
"mask_token": "<mask>",
|
| 50 |
+
"max_length": 128,
|
| 51 |
+
"model_max_length": 128,
|
| 52 |
+
"pad_to_multiple_of": null,
|
| 53 |
+
"pad_token": "<pad>",
|
| 54 |
+
"pad_token_type_id": 0,
|
| 55 |
+
"padding_side": "right",
|
| 56 |
+
"sep_token": "</s>",
|
| 57 |
+
"stride": 0,
|
| 58 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
| 59 |
+
"truncation_side": "right",
|
| 60 |
+
"truncation_strategy": "longest_first",
|
| 61 |
+
"unk_token": "<unk>"
|
| 62 |
+
}
|