Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,22 +34,22 @@ size_categories:
|
|
| 34 |
|
| 35 |
## Dataset Description
|
| 36 |
|
| 37 |
-
https://huggingface.co/datasets/
|
| 38 |
|
| 39 |
|
| 40 |
### Dataset Summary
|
| 41 |
|
| 42 |
-
|
| 43 |
|
| 44 |
### How to use it
|
| 45 |
```python
|
| 46 |
from datasets import load_dataset
|
| 47 |
|
| 48 |
# full dataset (4.13GB of data)
|
| 49 |
-
ds = load_dataset("
|
| 50 |
|
| 51 |
# dataset streaming (will only download the data as needed)
|
| 52 |
-
ds = load_dataset("
|
| 53 |
for sample in iter(ds): print(sample["code"])
|
| 54 |
```
|
| 55 |
|
|
@@ -87,7 +87,7 @@ The released dataset may contain sensitive information such as emails, IP addres
|
|
| 87 |
## Additional Information
|
| 88 |
|
| 89 |
### Dataset Curators
|
| 90 |
-
Matthew Kenney,
|
| 91 |
|
| 92 |
### Citation Information
|
| 93 |
```
|
|
|
|
| 34 |
|
| 35 |
## Dataset Description
|
| 36 |
|
| 37 |
+
https://huggingface.co/datasets/AlgorithmicResearchGroup/arxiv_python_research_code
|
| 38 |
|
| 39 |
|
| 40 |
### Dataset Summary
|
| 41 |
|
| 42 |
+
AlgorithmicResearchGroup/arxiv_python_research_code contains over 4.13GB of source code files referenced strictly in ArXiv papers. The dataset serves as a curated dataset for Code LLMs.
|
| 43 |
|
| 44 |
### How to use it
|
| 45 |
```python
|
| 46 |
from datasets import load_dataset
|
| 47 |
|
| 48 |
# full dataset (4.13GB of data)
|
| 49 |
+
ds = load_dataset("AlgorithmicResearchGroup/arxiv_python_research_code", split="train")
|
| 50 |
|
| 51 |
# dataset streaming (will only download the data as needed)
|
| 52 |
+
ds = load_dataset("AlgorithmicResearchGroup/arxiv_python_research_code", streaming=True, split="train")
|
| 53 |
for sample in iter(ds): print(sample["code"])
|
| 54 |
```
|
| 55 |
|
|
|
|
| 87 |
## Additional Information
|
| 88 |
|
| 89 |
### Dataset Curators
|
| 90 |
+
Matthew Kenney, AlgorithmicResearchGroup, matt@algorithmicresearchgroup.com
|
| 91 |
|
| 92 |
### Citation Information
|
| 93 |
```
|