update config
Browse files
README.md
CHANGED
@@ -201,14 +201,6 @@ configs:
|
|
201 |
data_files:
|
202 |
- split: train
|
203 |
path: issues/train-*
|
204 |
-
- config_name: jupyter_scripts
|
205 |
-
data_files:
|
206 |
-
- split: train
|
207 |
-
path: jupyter_scripts/train-*
|
208 |
-
- config_name: jupyter_structured
|
209 |
-
data_files:
|
210 |
-
- split: train
|
211 |
-
path: jupyter_structured/train-*
|
212 |
- config_name: kaggle
|
213 |
data_files:
|
214 |
- split: train
|
@@ -252,8 +244,8 @@ For more details on the processing of each subset, check the [StarCoder2 paper](
|
|
252 |
```python
|
253 |
from datasets import load_dataset
|
254 |
|
255 |
-
# replace `
|
256 |
-
ds = load_dataset("bigcode/starcoder2data-extras", "
|
257 |
```
|
258 |
|
259 |
## Citation
|
|
|
201 |
data_files:
|
202 |
- split: train
|
203 |
path: issues/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
- config_name: kaggle
|
205 |
data_files:
|
206 |
- split: train
|
|
|
244 |
```python
|
245 |
from datasets import load_dataset
|
246 |
|
247 |
+
# replace `kaggle` with one of the config names listed above
|
248 |
+
ds = load_dataset("bigcode/starcoder2data-extras", "kaggle", split="train")
|
249 |
```
|
250 |
|
251 |
## Citation
|