Commit
•
3eddfa0
1
Parent(s):
c383ade
Replace YAML keys from int to str
Browse filesReplace YAML metadata integer keys with strings, as the Hub does not support integers.
See: https://github.com/huggingface/datasets/issues/5275
README.md
CHANGED
@@ -2,15 +2,14 @@
|
|
2 |
annotations_creators:
|
3 |
- crowdsourced
|
4 |
- machine-generated
|
5 |
-
language:
|
6 |
-
- en
|
7 |
language_creators:
|
8 |
- found
|
|
|
|
|
9 |
license:
|
10 |
- cc-by-nc-4.0
|
11 |
multilinguality:
|
12 |
- monolingual
|
13 |
-
pretty_name: Adversarial NLI
|
14 |
size_categories:
|
15 |
- 100K<n<1M
|
16 |
source_datasets:
|
@@ -22,6 +21,7 @@ task_ids:
|
|
22 |
- natural-language-inference
|
23 |
- multi-input-text-classification
|
24 |
paperswithcode_id: anli
|
|
|
25 |
dataset_info:
|
26 |
features:
|
27 |
- name: uid
|
@@ -34,9 +34,9 @@ dataset_info:
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
-
0: entailment
|
38 |
-
1: neutral
|
39 |
-
2: contradiction
|
40 |
- name: reason
|
41 |
dtype: string
|
42 |
config_name: plain_text
|
|
|
2 |
annotations_creators:
|
3 |
- crowdsourced
|
4 |
- machine-generated
|
|
|
|
|
5 |
language_creators:
|
6 |
- found
|
7 |
+
language:
|
8 |
+
- en
|
9 |
license:
|
10 |
- cc-by-nc-4.0
|
11 |
multilinguality:
|
12 |
- monolingual
|
|
|
13 |
size_categories:
|
14 |
- 100K<n<1M
|
15 |
source_datasets:
|
|
|
21 |
- natural-language-inference
|
22 |
- multi-input-text-classification
|
23 |
paperswithcode_id: anli
|
24 |
+
pretty_name: Adversarial NLI
|
25 |
dataset_info:
|
26 |
features:
|
27 |
- name: uid
|
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
+
'0': entailment
|
38 |
+
'1': neutral
|
39 |
+
'2': contradiction
|
40 |
- name: reason
|
41 |
dtype: string
|
42 |
config_name: plain_text
|