Update README.md
Browse files
README.md
CHANGED
@@ -17,31 +17,37 @@ probably proofread and complete it, then remove this comment. -->
|
|
17 |
|
18 |
# DistilFEVERen
|
19 |
|
20 |
-
This model is a fine-tuned version of [distilbert-base-multilingual-cased](https://huggingface.co/distilbert-base-multilingual-cased) on an unknown dataset.
|
21 |
-
It achieves the following results on the evaluation set:
|
22 |
-
|
23 |
|
24 |
-
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
More information needed
|
27 |
|
28 |
-
## Intended uses & limitations
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
33 |
|
34 |
-
More information needed
|
35 |
|
36 |
## Training procedure
|
37 |
|
|
|
|
|
38 |
### Training hyperparameters
|
39 |
|
40 |
The following hyperparameters were used during training:
|
41 |
- optimizer: None
|
42 |
- training_precision: float32
|
43 |
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
|
47 |
|
|
|
17 |
|
18 |
# DistilFEVERen
|
19 |
|
|
|
|
|
|
|
20 |
|
21 |
+
This model is a fine-tuned version of [distilbert-base-multilingual-cased](https://huggingface.co/distilbert-base-multilingual-cased), specifically trained on the Recognize Textual Entailment (RTE) task using [the first fold split of FEVER dataset in English](https://huggingface.co/datasets/raicrits/fever_folds/blob/main/folds_en/1.json).
|
22 |
+
RTE focuses on evaluating the support or refutation of claims within a given text. The labels used for classification are as follows:
|
23 |
+
- 0: SUPPORT (indicating that the claim is supported by the text)
|
24 |
+
- 1: CONFUTE (indicating that the claim is refuted by the text)
|
25 |
+
- 2: NOT ENOUGH INFO (indicating that there is insufficient information in the text to support or refute the claim).
|
26 |
|
|
|
27 |
|
|
|
28 |
|
29 |
+
## Inference API Usage
|
30 |
|
31 |
+
When using the Inference API, it is important to note that the input should be provided by pasting the text first, followed by the claim, without any spaces or separators. The model's tokenizer concatenates these inputs in the specified order. Interestingly, inverting the order of pasting (claim first, then text) seems to produce similar results, suggesting that the model generally captures coherence within a given text.
|
32 |
|
|
|
33 |
|
34 |
## Training procedure
|
35 |
|
36 |
+
|
37 |
+
|
38 |
### Training hyperparameters
|
39 |
|
40 |
The following hyperparameters were used during training:
|
41 |
- optimizer: None
|
42 |
- training_precision: float32
|
43 |
|
44 |
+
## Inference procedure
|
45 |
+
|
46 |
+
|
47 |
+
### Evaluation results
|
48 |
+
It achieves the following results on the evaluation set:
|
49 |
+
|
50 |
+
## Inference procedure
|
51 |
|
52 |
|
53 |
|