Update README.md
Browse files
README.md
CHANGED
@@ -12,12 +12,20 @@ Full credits go to [Mohamad Merchant](https://twitter.com/mohmadmerchant1)
|
|
12 |
|
13 |
Reproduced by [Vu Minh Chien](https://www.linkedin.com/in/vumichien/)
|
14 |
|
15 |
-
Motivation: Semantic Similarity determines how similar two sentences are, in terms of
|
16 |
|
17 |
## Training and evaluation data
|
18 |
|
19 |
This example demonstrates the use of SNLI (Stanford Natural Language Inference) Corpus to predict semantic sentence similarity with Transformers.
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
## Training procedure
|
22 |
|
23 |
### Training hyperparameters
|
|
|
12 |
|
13 |
Reproduced by [Vu Minh Chien](https://www.linkedin.com/in/vumichien/)
|
14 |
|
15 |
+
Motivation: Semantic Similarity determines how similar two sentences are, in terms of their meaning. In this tutorial, we can fine-tune BERT model and use it to predict the similarity score for two sentences.
|
16 |
|
17 |
## Training and evaluation data
|
18 |
|
19 |
This example demonstrates the use of SNLI (Stanford Natural Language Inference) Corpus to predict semantic sentence similarity with Transformers.
|
20 |
|
21 |
+
Here are the "similarity" label values in SNLI dataset:
|
22 |
+
|
23 |
+
- Contradiction: The sentences share no similarity.
|
24 |
+
|
25 |
+
- Entailment: The sentences have a similar meaning.
|
26 |
+
|
27 |
+
- Neutral: The sentences are neutral.
|
28 |
+
|
29 |
## Training procedure
|
30 |
|
31 |
### Training hyperparameters
|