Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
type: demo
|
| 3 |
---
|
| 4 |
|
| 5 |
-
# Dataset Card for
|
| 6 |
|
| 7 |
## Table of Contents
|
| 8 |
- [Table of Contents](#table-of-contents)
|
|
@@ -39,7 +39,14 @@ type: demo
|
|
| 39 |
|
| 40 |
### Dataset Summary
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
### Supported Tasks and Leaderboards
|
| 45 |
|
|
|
|
| 2 |
type: demo
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# Dataset Card for Demo1
|
| 6 |
|
| 7 |
## Table of Contents
|
| 8 |
- [Table of Contents](#table-of-contents)
|
|
|
|
| 39 |
|
| 40 |
### Dataset Summary
|
| 41 |
|
| 42 |
+
This is a demo dataset. It consists in two files `data/train.csv` and `data/test.csv`
|
| 43 |
+
|
| 44 |
+
You can load it with
|
| 45 |
+
```python
|
| 46 |
+
from datasets import load_dataset
|
| 47 |
+
data_files = {"train": "data/train.csv", "test": "test.csv"}
|
| 48 |
+
demo1 = load_dataset("lhoestq/demo1", data_files=data_files)
|
| 49 |
+
```
|
| 50 |
|
| 51 |
### Supported Tasks and Leaderboards
|
| 52 |
|