nreimers
commited on
Commit
·
2b4fd64
1
Parent(s):
ec8d4ad
update
Browse files
README.md
CHANGED
|
@@ -1,9 +1,23 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
This model was trained using [SentenceTransformers](https://sbert.net) [Cross-Encoder](https://www.sbert.net/examples/applications/cross-encoder/README.html) class.
|
| 3 |
|
| 4 |
## Training Data
|
| 5 |
The model was trained on the [SNLI](https://nlp.stanford.edu/projects/snli/) and [MultiNLI](https://cims.nyu.edu/~sbowman/multinli/) datasets. For a given sentence pair, it will output three scores corresponding to the labels: contradiction, entailment, neutral.
|
| 6 |
|
|
|
|
|
|
|
| 7 |
|
| 8 |
## Usage
|
| 9 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
pipeline_tag: zero-shot-classification
|
| 4 |
+
tags:
|
| 5 |
+
- roberta-base
|
| 6 |
+
datasets:
|
| 7 |
+
- multi_nli
|
| 8 |
+
- snli
|
| 9 |
+
metrics:
|
| 10 |
+
- accuracy
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Cross-Encoder for Natural Language Inference
|
| 14 |
This model was trained using [SentenceTransformers](https://sbert.net) [Cross-Encoder](https://www.sbert.net/examples/applications/cross-encoder/README.html) class.
|
| 15 |
|
| 16 |
## Training Data
|
| 17 |
The model was trained on the [SNLI](https://nlp.stanford.edu/projects/snli/) and [MultiNLI](https://cims.nyu.edu/~sbowman/multinli/) datasets. For a given sentence pair, it will output three scores corresponding to the labels: contradiction, entailment, neutral.
|
| 18 |
|
| 19 |
+
## Performance
|
| 20 |
+
For evaluation results, see [SBERT.net - Pretrained Cross-Encoder](https://www.sbert.net/docs/pretrained_cross-encoders.html#nli).
|
| 21 |
|
| 22 |
## Usage
|
| 23 |
|