Upload 3 files
Browse files- README.md +15 -0
- data.csv +5 -0
- holdout.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 1
|
14 |
+
|
15 |
+
This dataset contains two csv files at the root, and a YAML field `configs` that specifies the data files and splits.
|
data.csv
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kind,sound
|
2 |
+
dog,woof
|
3 |
+
cat,meow
|
4 |
+
pokemon,pika
|
5 |
+
human,hello
|
holdout.csv
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
kind,sound
|
2 |
+
dog,woof woof
|
3 |
+
cat,purrrr
|
4 |
+
pokemon,pika pika
|
5 |
+
horse,neigh
|