Upload 4 files
Browse files- README.md +15 -0
- data/abc.csv +2 -0
- data/edf.csv +4 -0
- holdout/ghi.csv +5 -0
README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: default
|
| 4 |
+
data_files:
|
| 5 |
+
- split: train
|
| 6 |
+
path: "data/*.csv"
|
| 7 |
+
- split: test
|
| 8 |
+
path: "holdout/*.csv"
|
| 9 |
+
size_categories:
|
| 10 |
+
- n<1K
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# [doc] manual configuration 3
|
| 14 |
+
|
| 15 |
+
This dataset contains two csv files in the data/ directory and one csv file in the holdout/ directory, and a YAML field `configs` that specifies the data files and splits, using glob expressions.
|
data/abc.csv
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
kind,sound
|
| 2 |
+
dog,woof
|
data/edf.csv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
kind,sound
|
| 2 |
+
cat,meow
|
| 3 |
+
pokemon,pika
|
| 4 |
+
human,hello
|
holdout/ghi.csv
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
kind,sound
|
| 2 |
+
dog,woof woof
|
| 3 |
+
cat,purrrr
|
| 4 |
+
pokemon,pika pika
|
| 5 |
+
horse,neigh
|