Upload 2 files
Browse files
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: default
|
4 |
+
data_files: "*.tsv"
|
5 |
+
names: ["kind", "sound"]
|
6 |
+
size_categories:
|
7 |
+
- n<1K
|
8 |
+
---
|
9 |
+
|
10 |
+
# [doc] format - tsv - 3
|
11 |
+
|
12 |
+
This dataset contains one tsv file at the root. We provide the name of the columns in the YAML config, since the data file has no header. The delimiter is set to `"\t"` (tabulation) due to the extension of the file. The reference for the options is the [documentation of pandas.read_csv()](https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html).
|
data.tsv
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
dog woof
|
2 |
+
cat meow
|
3 |
+
pokemon pika
|
4 |
+
human hello
|