Update README.md
Browse files
README.md
CHANGED
@@ -233,7 +233,7 @@ configs:
|
|
233 |
|
234 |
# StarCoder2 Extras
|
235 |
|
236 |
-
This is the dataset of extra sources (besides Stack v2 code data) used to train the StarCoder2 family of models. It contains the following subsets:
|
237 |
|
238 |
- Kaggle (`kaggle`): Kaggle notebooks from [Meta-Kaggle-Code](https://www.kaggle.com/datasets/kaggle/meta-kaggle-code) dataset, converted to scripts and prefixed with information on the Kaggle datasets used in the notebook. The file headers have a similar format to Jupyter Structured but the code content is only one single script.
|
239 |
- StackOverflow (`stackoverflow`): stackoverflow conversations from this [StackExchange dump](https://archive.org/details/stackexchange).
|
@@ -255,3 +255,14 @@ from datasets import load_dataset
|
|
255 |
# replace `jupyter_scripts` with one of the config names listed above
|
256 |
ds = load_dataset("bigcode/starcoder2data-extras", "jupyter_scripts", split="train")
|
257 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
|
234 |
# StarCoder2 Extras
|
235 |
|
236 |
+
This is the dataset of extra sources (besides Stack v2 code data) used to train the [StarCoder2](https://arxiv.org/abs/2402.19173) family of models. It contains the following subsets:
|
237 |
|
238 |
- Kaggle (`kaggle`): Kaggle notebooks from [Meta-Kaggle-Code](https://www.kaggle.com/datasets/kaggle/meta-kaggle-code) dataset, converted to scripts and prefixed with information on the Kaggle datasets used in the notebook. The file headers have a similar format to Jupyter Structured but the code content is only one single script.
|
239 |
- StackOverflow (`stackoverflow`): stackoverflow conversations from this [StackExchange dump](https://archive.org/details/stackexchange).
|
|
|
255 |
# replace `jupyter_scripts` with one of the config names listed above
|
256 |
ds = load_dataset("bigcode/starcoder2data-extras", "jupyter_scripts", split="train")
|
257 |
```
|
258 |
+
|
259 |
+
## Citation
|
260 |
+
|
261 |
+
```
|
262 |
+
@article{lozhkov2024starcoder,
|
263 |
+
title={Starcoder 2 and the stack v2: The next generation},
|
264 |
+
author={Lozhkov, Anton and Li, Raymond and Allal, Loubna Ben and Cassano, Federico and Lamy-Poirier, Joel and Tazi, Nouamane and Tang, Ao and Pykhtar, Dmytro and Liu, Jiawei and Wei, Yuxiang and others},
|
265 |
+
journal={arXiv preprint arXiv:2402.19173},
|
266 |
+
year={2024}
|
267 |
+
}
|
268 |
+
```
|