Upload 6 files
Browse files- README.md +19 -0
- data.json +6 -0
- data.jsonl +4 -0
- data.tsv +5 -0
- data.txt +4 -0
README.md
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: csv
|
4 |
+
data_files: "*.csv"
|
5 |
+
- config_name: tsv
|
6 |
+
data_files: "*.tsv"
|
7 |
+
- config_name: json
|
8 |
+
data_files: "*.json"
|
9 |
+
- config_name: jsonl
|
10 |
+
data_files: "*.jsonl"
|
11 |
+
- config_name: txt
|
12 |
+
data_files: "*.txt"
|
13 |
+
size_categories:
|
14 |
+
- n<1K
|
15 |
+
---
|
16 |
+
|
17 |
+
# [doc] formats 1
|
18 |
+
|
19 |
+
This dataset contains files for a collection of supported formats, each of which is loaded in a different config (see the YAML field `configs`).
|
data.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{ "kind": "dog", "sound": "woof" },
|
3 |
+
{ "kind": "cat", "sound": "meow" },
|
4 |
+
{ "kind": "pokemon", "sound": "pika" },
|
5 |
+
{ "kind": "human", "sound": "hello" }
|
6 |
+
]
|
data.jsonl
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"kind": "dog","sound": "woof"}
|
2 |
+
{"kind": "cat","sound": "meow"}
|
3 |
+
{"kind": "pokemon","sound": "pika"}
|
4 |
+
{"kind": "human","sound": "hello"}
|
data.tsv
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kind sound
|
2 |
+
dog woof
|
3 |
+
cat meow
|
4 |
+
pokemon pika
|
5 |
+
human hello
|
data.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
woof
|
2 |
+
meow
|
3 |
+
pika
|
4 |
+
hello
|