hapaxlegomenon commited on
Commit
009b302
·
verified ·
1 Parent(s): 853c9eb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - pt
7
+ tags:
8
+ - NLI
9
+ - datasets
10
+ pretty_name: InferBR
11
+ size_categories:
12
+ - 10K<n<100K
13
+ dataset_info:
14
+ features:
15
+ - name: sentence_pair_id
16
+ dtype: int64
17
+ - name: premise
18
+ dtype: string
19
+ - name: hypothesis
20
+ dtype: string
21
+ - name: label
22
+ dtype:
23
+ class_label:
24
+ names:
25
+ '0': CONTRADICTION
26
+ '1': ENTAILMENT
27
+ '2': NEUTRAL
28
+ ---
29
+
30
+ # InferBR
31
+
32
+ This is the InferBR dataset for Natural Language Inference in Portuguese. This version removes the flagged low-quality samples from the original dataset,
33
+ keeping 10.528 samples. The Github repo with the raw data can be found at: https://github.com/lbencke/InferBR.
34
+
35
+ ## Columns
36
+
37
+ **sentence_pair_id**: Identifier for premise-hypothesis sentence pairs.
38
+ **premise**: The premise sentence.
39
+ **hypothesis**: The hypothesis sentence.
40
+ **label**: The generated label for the hypothesis considering the premise.
41
+
42
+ 0 – Contradiction
43
+ 1 – Entailment
44
+ 2 – Neutral
45
+
46
+
47
+
48
+
49
+ # Citation
50
+
51
+ @inproceedings{bencke-etal-2024-inferbr-natural,
52
+ title = "{I}nfer{BR}: A Natural Language Inference Dataset in {P}ortuguese",
53
+ author = "Bencke, Luciana and
54
+ Pereira, Francielle Vasconcellos and
55
+ Santos, Moniele Kunrath and
56
+ Moreira, Viviane",
57
+ editor = "Calzolari, Nicoletta and
58
+ Kan, Min-Yen and
59
+ Hoste, Veronique and
60
+ Lenci, Alessandro and
61
+ Sakti, Sakriani and
62
+ Xue, Nianwen",
63
+ booktitle = "Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)",
64
+ month = may,
65
+ year = "2024",
66
+ address = "Torino, Italy",
67
+ publisher = "ELRA and ICCL",
68
+ url = "https://aclanthology.org/2024.lrec-main.793",
69
+ pages = "9050--9060",
70
+ }