lighteternal commited on
Commit
5973cfd
·
1 Parent(s): 9970537

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -5
README.md CHANGED
@@ -10,14 +10,12 @@ tags:
10
  - sentence-similarity
11
  - transformers
12
 
13
- datasets:
14
- - allnli
15
 
16
  widget:
17
  - source_sentence: "Το κινητό έπεσε και έσπασε."
18
  sentences: [
19
  "H πτώση κατέστρεψε τη συσκευή.",
20
- "Το αυτοκίνητο έσπασε στα δυο",
21
  "Ο υπουργός έπεσε και έσπασε το πόδι του."
22
  ]
23
 
@@ -68,7 +66,7 @@ cosine_scores = util.pytorch_cos_sim(embeddings1, embeddings2)
68
 
69
  #Output the pairs with their score
70
  for i in range(len(sentences1)):
71
- print("{} \t\t {} \t\t Score: {:.4f}".format(sentences1[i], sentences2[i], cosine_scores[i][i]))
72
 
73
  #Outputs:
74
  #Το κινητό έπεσε και έσπασε. H πτώση κατέστρεψε τη συσκευή. Score: 0.6741
@@ -174,6 +172,6 @@ The research work was supported by the Hellenic Foundation for Research and Inno
174
 
175
 
176
  ## Citing & Authors
177
- Citation info of Greek model: TBD
178
 
179
  Based on the transfer learning approach of [Making Monolingual Sentence Embeddings Multilingual using Knowledge Distillation](https://arxiv.org/abs/2004.09813)
 
10
  - sentence-similarity
11
  - transformers
12
 
 
 
13
 
14
  widget:
15
  - source_sentence: "Το κινητό έπεσε και έσπασε."
16
  sentences: [
17
  "H πτώση κατέστρεψε τη συσκευή.",
18
+ "Το αυτοκίνητο έσπασε στα δυο.",
19
  "Ο υπουργός έπεσε και έσπασε το πόδι του."
20
  ]
21
 
 
66
 
67
  #Output the pairs with their score
68
  for i in range(len(sentences1)):
69
+ print("{} {} Score: {:.4f}".format(sentences1[i], sentences2[i], cosine_scores[i][i]))
70
 
71
  #Outputs:
72
  #Το κινητό έπεσε και έσπασε. H πτώση κατέστρεψε τη συσκευή. Score: 0.6741
 
172
 
173
 
174
  ## Citing & Authors
175
+ Citation info for Greek model: TBD
176
 
177
  Based on the transfer learning approach of [Making Monolingual Sentence Embeddings Multilingual using Knowledge Distillation](https://arxiv.org/abs/2004.09813)