BlackKakapo commited on
Commit
8753717
·
1 Parent(s): 38b6df8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -11
README.md CHANGED
@@ -12,7 +12,7 @@ language_creators:
12
 
13
  ---
14
 
15
- # {MODEL_NAME}
16
 
17
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
18
 
@@ -75,18 +75,22 @@ print("Sentence embeddings:")
75
  print(sentence_embeddings)
76
  ```
77
 
78
-
79
-
80
- ## Evaluation Results
81
-
82
- <!--- Describe how your model was evaluated -->
83
-
84
- For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
85
-
86
-
87
  ## Training
88
  The model was trained with the parameters:
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  **DataLoader**:
91
 
92
  `torch.utils.data.dataloader.DataLoader` of length 223 with parameters:
@@ -127,4 +131,4 @@ SentenceTransformer(
127
 
128
  ## Citing & Authors
129
 
130
- <!--- Describe where people can find more information -->
 
12
 
13
  ---
14
 
15
+ # stsb-xlm-r-multilingual-ro
16
 
17
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
18
 
 
75
  print(sentence_embeddings)
76
  ```
77
 
 
 
 
 
 
 
 
 
 
78
  ## Training
79
  The model was trained with the parameters:
80
 
81
+ **DataSet**:
82
+ [STS-ro](https://www.SBERT.net)
83
+ The text dataset is in Romanian (ro). Score is from 0 to 5, that why I divide score by 5, becouse the score for EmbeddingSimilarityEvaluator (evaluator for finetune) need to be from 0 to 1.
84
+ Dataset Structure:
85
+ ```
86
+ {
87
+ 'score': 1.5,
88
+ 'sentence1': 'Un bărbat cântă la harpă.',
89
+ 'sentence2': 'Un bărbat cântă la claviatură.',
90
+ }
91
+ ```
92
+
93
+
94
  **DataLoader**:
95
 
96
  `torch.utils.data.dataloader.DataLoader` of length 223 with parameters:
 
131
 
132
  ## Citing & Authors
133
 
134
+ # BlackKakapo