Datasets:
Commit
·
fb0d0fe
1
Parent(s):
91f5e8f
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
|
@@ -38,8 +38,8 @@ dataset_info:
|
|
| 38 |
dtype:
|
| 39 |
class_label:
|
| 40 |
names:
|
| 41 |
-
0: USER
|
| 42 |
-
1: SYSTEM
|
| 43 |
- name: utterance
|
| 44 |
dtype: string
|
| 45 |
- name: frames
|
|
@@ -72,24 +72,24 @@ dataset_info:
|
|
| 72 |
dtype:
|
| 73 |
class_label:
|
| 74 |
names:
|
| 75 |
-
0: AFFIRM
|
| 76 |
-
1: AFFIRM_INTENT
|
| 77 |
-
2: CONFIRM
|
| 78 |
-
3: GOODBYE
|
| 79 |
-
4: INFORM
|
| 80 |
-
5: INFORM_COUNT
|
| 81 |
-
6: INFORM_INTENT
|
| 82 |
-
7: NEGATE
|
| 83 |
-
8: NEGATE_INTENT
|
| 84 |
-
9: NOTIFY_FAILURE
|
| 85 |
-
10: NOTIFY_SUCCESS
|
| 86 |
-
11: OFFER
|
| 87 |
-
12: OFFER_INTENT
|
| 88 |
-
13: REQUEST
|
| 89 |
-
14: REQUEST_ALTS
|
| 90 |
-
15: REQ_MORE
|
| 91 |
-
16: SELECT
|
| 92 |
-
17: THANK_YOU
|
| 93 |
- name: slot
|
| 94 |
dtype: string
|
| 95 |
- name: canonical_values
|
|
|
|
| 38 |
dtype:
|
| 39 |
class_label:
|
| 40 |
names:
|
| 41 |
+
'0': USER
|
| 42 |
+
'1': SYSTEM
|
| 43 |
- name: utterance
|
| 44 |
dtype: string
|
| 45 |
- name: frames
|
|
|
|
| 72 |
dtype:
|
| 73 |
class_label:
|
| 74 |
names:
|
| 75 |
+
'0': AFFIRM
|
| 76 |
+
'1': AFFIRM_INTENT
|
| 77 |
+
'2': CONFIRM
|
| 78 |
+
'3': GOODBYE
|
| 79 |
+
'4': INFORM
|
| 80 |
+
'5': INFORM_COUNT
|
| 81 |
+
'6': INFORM_INTENT
|
| 82 |
+
'7': NEGATE
|
| 83 |
+
'8': NEGATE_INTENT
|
| 84 |
+
'9': NOTIFY_FAILURE
|
| 85 |
+
'10': NOTIFY_SUCCESS
|
| 86 |
+
'11': OFFER
|
| 87 |
+
'12': OFFER_INTENT
|
| 88 |
+
'13': REQUEST
|
| 89 |
+
'14': REQUEST_ALTS
|
| 90 |
+
'15': REQ_MORE
|
| 91 |
+
'16': SELECT
|
| 92 |
+
'17': THANK_YOU
|
| 93 |
- name: slot
|
| 94 |
dtype: string
|
| 95 |
- name: canonical_values
|