Datasets:
SummerMC Developer commited on
Commit ·
e5b6de3
1
Parent(s): 9b1aeae
Add dataset_infos.json with explicit string features
Browse files- Fixes 'Feature type Json not found' error in dataset viewer
- Explicitly declares all fields as Value(string) to prevent auto-inference issues
- Required for nested/dict fields (e.g. v-Fable output field)
- dataset_infos.json +12 -0
dataset_infos.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"default": {
|
| 3 |
+
"features": {
|
| 4 |
+
"instruction": {"dtype": "string", "_type": "Value"},
|
| 5 |
+
"input": {"dtype": "string", "_type": "Value"},
|
| 6 |
+
"output": {"dtype": "string", "_type": "Value"}
|
| 7 |
+
},
|
| 8 |
+
"splits": {
|
| 9 |
+
"train": {"name": "train", "num_bytes": 440000000, "num_examples": 50000}
|
| 10 |
+
}
|
| 11 |
+
}
|
| 12 |
+
}
|