vumichien commited on
Commit
f351457
1 Parent(s): 0cfe872

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
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 what they mean. The fine-tuned BERT model takes two sentences as inputs and outputs a similarity score for these 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
  ## 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