Update README.md
Browse files
README.md
CHANGED
@@ -1,8 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
size_categories:
|
3 |
- n<1K
|
4 |
---
|
|
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
This dataset contains one tsv file at the root. The delimiter is automatically set to `"\t"` (tabulation).
|
|
|
1 |
+
# [doc] formats - tsv - 1
|
2 |
+
|
3 |
+
This dataset contains one tsv file at the root:
|
4 |
+
|
5 |
+
- [data.tsv](./data.tsv)
|
6 |
+
|
7 |
+
```csv
|
8 |
+
kind sound
|
9 |
+
dog woof
|
10 |
+
cat meow
|
11 |
+
pokemon pika
|
12 |
+
human hello
|
13 |
+
```
|
14 |
+
|
15 |
+
The YAML section of the README does not contain anything related to loading the data (only the size category metadata):
|
16 |
+
|
17 |
+
```yaml
|
18 |
---
|
19 |
size_categories:
|
20 |
- n<1K
|
21 |
---
|
22 |
+
```
|
23 |
|
24 |
+
The delimiter is automatically set to `"\t"` (tabulation) because of the `.tsv` extension of the data file.
|
|
|
|