Update model metadata
Browse files
README.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
# Cross-Encoder for Quora Duplicate Questions Detection
|
5 |
This model was trained using [SentenceTransformers](https://sbert.net) [Cross-Encoder](https://www.sbert.net/examples/applications/cross-encoder/README.html) class.
|
@@ -7,7 +17,7 @@ This model was trained using [SentenceTransformers](https://sbert.net) [Cross-En
|
|
7 |
## Training Data
|
8 |
This model was trained on the [Quora Duplicate Questions](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) dataset. The model will predict a score between 0 and 1 how likely the two given questions are duplicates.
|
9 |
|
10 |
-
Note: The model is not suitable to estimate the similarity of questions, e.g. the two questions "How to learn Java" and "How to learn Python" will result in a
|
11 |
|
12 |
## Usage and Performance
|
13 |
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- sentence-transformers/quora-duplicates
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
base_model:
|
8 |
+
- distilbert/distilroberta-base
|
9 |
+
pipeline_tag: text-ranking
|
10 |
+
library_name: sentence-transformers
|
11 |
+
tags:
|
12 |
+
- transformers
|
13 |
---
|
14 |
# Cross-Encoder for Quora Duplicate Questions Detection
|
15 |
This model was trained using [SentenceTransformers](https://sbert.net) [Cross-Encoder](https://www.sbert.net/examples/applications/cross-encoder/README.html) class.
|
|
|
17 |
## Training Data
|
18 |
This model was trained on the [Quora Duplicate Questions](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) dataset. The model will predict a score between 0 and 1 how likely the two given questions are duplicates.
|
19 |
|
20 |
+
Note: The model is not suitable to estimate the similarity of questions, e.g. the two questions "How to learn Java" and "How to learn Python" will result in a rather low score, as these are not duplicates.
|
21 |
|
22 |
## Usage and Performance
|
23 |
|