Datasets:
Commit ·
522a295
1
Parent(s): 6c97aa4
Update README.md
Browse files
README.md
CHANGED
|
@@ -105,6 +105,12 @@ We have 4 Configurations:
|
|
| 105 |
from datasets import load_dataset
|
| 106 |
dataset = load_dataset(path="youssef101/artelingo", name='artelingo')
|
| 107 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
#### dev
|
| 110 |
|
|
|
|
| 105 |
from datasets import load_dataset
|
| 106 |
dataset = load_dataset(path="youssef101/artelingo", name='artelingo')
|
| 107 |
```
|
| 108 |
+
you can also provide a `splits:LIST(str)` parameter to avoid downloading the huge files for all the splits. (especially the train set :))
|
| 109 |
+
```python
|
| 110 |
+
from datasets import load_dataset
|
| 111 |
+
dataset = load_dataset(path="youssef101/artelingo", name='artelingo', splits=['val'])
|
| 112 |
+
```
|
| 113 |
+
Notice that this deems the next dev configuration redundant.
|
| 114 |
|
| 115 |
#### dev
|
| 116 |
|