Update README.md
Browse files
README.md
CHANGED
@@ -1,18 +1,22 @@
|
|
1 |
---
|
2 |
library_name: keras
|
|
|
|
|
3 |
---
|
4 |
|
5 |
## Model description
|
6 |
|
7 |
-
|
8 |
|
9 |
-
|
10 |
|
11 |
-
|
|
|
|
|
12 |
|
13 |
## Training and evaluation data
|
14 |
|
15 |
-
|
16 |
|
17 |
## Training procedure
|
18 |
|
|
|
1 |
---
|
2 |
library_name: keras
|
3 |
+
tags:
|
4 |
+
- sentence-similarity
|
5 |
---
|
6 |
|
7 |
## Model description
|
8 |
|
9 |
+
This repo contains the model and the notebook for fine-tuning BERT model on SNLI Corpus for Semantic Similarity. [Semantic Similarity with BERT](https://keras.io/examples/nlp/semantic_similarity_with_bert/).
|
10 |
|
11 |
+
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 |
|