yury-zyphra
commited on
Commit
•
d8e5a6e
1
Parent(s):
bec4434
Update README.md
Browse files
README.md
CHANGED
@@ -75,10 +75,16 @@ These results are aggregate scores of classic language modeling evaluations (PIQ
|
|
75 |
## How to download
|
76 |
|
77 |
Full dataset:
|
78 |
-
|
|
|
|
|
|
|
79 |
|
80 |
Full dataset without StarCoder:
|
81 |
-
|
|
|
|
|
|
|
82 |
|
83 |
For downloading individual components put their name in the name arg of `load_dataset()`:
|
84 |
- zyda_arxiv_only
|
|
|
75 |
## How to download
|
76 |
|
77 |
Full dataset:
|
78 |
+
```
|
79 |
+
import datasets
|
80 |
+
ds = datasets.load_dataset("Zyphra/Zyda", split="train")
|
81 |
+
```
|
82 |
|
83 |
Full dataset without StarCoder:
|
84 |
+
```
|
85 |
+
import datasets
|
86 |
+
ds = datasets.load_dataset("Zyphra/Zyda", name="zyda_no_starcoder", split="train")
|
87 |
+
```
|
88 |
|
89 |
For downloading individual components put their name in the name arg of `load_dataset()`:
|
90 |
- zyda_arxiv_only
|