Upload 3 files
Browse files- README.md +15 -0
- additional_data.csv +5 -0
- main_data.csv +5 -0
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
configs:
|
3 |
+
- config_name: tab
|
4 |
+
data_files: "main_data.csv"
|
5 |
+
sep: "\t"
|
6 |
+
- config_name: comma
|
7 |
+
data_files: "additional_data.csv"
|
8 |
+
sep: ","
|
9 |
+
size_categories:
|
10 |
+
- n<1K
|
11 |
+
---
|
12 |
+
|
13 |
+
# [doc] manual configuration 5
|
14 |
+
|
15 |
+
This dataset contains two csv files at the root, and a YAML field `configs` that specifies the data files and configs, specifying that the file main_data.csv uses a tabulation as separator.
|
additional_data.csv
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kind,sound
|
2 |
+
dog,woof woof
|
3 |
+
cat,purrrr
|
4 |
+
pokemon,pika pika
|
5 |
+
horse,neigh
|
main_data.csv
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kind sound
|
2 |
+
dog woof
|
3 |
+
cat meow
|
4 |
+
pokemon pika
|
5 |
+
human hello
|