Upload 3 files
Browse files- README.md +13 -0
- additional_data.csv +5 -0
- main_data.csv +5 -0
README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: main_data
|
| 4 |
+
data_files: "main_data.csv"
|
| 5 |
+
- config_name: additional_data
|
| 6 |
+
data_files: "additional_data.csv"
|
| 7 |
+
size_categories:
|
| 8 |
+
- n<1K
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# [doc] manual configuration 4
|
| 12 |
+
|
| 13 |
+
This dataset contains two csv files at the root, and a YAML field `configs` that specifies the data files and configs.
|
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
|