Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,7 +38,7 @@ size_categories:
|
|
| 38 |
# Dataset card for ArtifactAI/arxiv_cplusplus_research_code
|
| 39 |
## Dataset Description
|
| 40 |
|
| 41 |
-
https://huggingface.co/datasets/
|
| 42 |
|
| 43 |
|
| 44 |
### Dataset Summary
|
|
@@ -50,10 +50,10 @@ ArtifactAI/arxiv_python_research_code contains over 10.6GB of source code files
|
|
| 50 |
from datasets import load_dataset
|
| 51 |
|
| 52 |
# full dataset (10.6GB of data)
|
| 53 |
-
ds = load_dataset("
|
| 54 |
|
| 55 |
# dataset streaming (will only download the data as needed)
|
| 56 |
-
ds = load_dataset("
|
| 57 |
for sample in iter(ds): print(sample["code"])
|
| 58 |
```
|
| 59 |
|
|
@@ -91,7 +91,7 @@ The released dataset may contain sensitive information such as emails, IP addres
|
|
| 91 |
## Additional Information
|
| 92 |
|
| 93 |
### Dataset Curators
|
| 94 |
-
Matthew Kenney,
|
| 95 |
|
| 96 |
### Citation Information
|
| 97 |
```
|
|
|
|
| 38 |
# Dataset card for ArtifactAI/arxiv_cplusplus_research_code
|
| 39 |
## Dataset Description
|
| 40 |
|
| 41 |
+
https://huggingface.co/datasets/AlgorithmicResearchGroup/arxiv_cplusplus_research_code
|
| 42 |
|
| 43 |
|
| 44 |
### Dataset Summary
|
|
|
|
| 50 |
from datasets import load_dataset
|
| 51 |
|
| 52 |
# full dataset (10.6GB of data)
|
| 53 |
+
ds = load_dataset("AlgorithmicResearchGroup/arxiv_cplusplus_research_code", split="train")
|
| 54 |
|
| 55 |
# dataset streaming (will only download the data as needed)
|
| 56 |
+
ds = load_dataset("AlgorithmicResearchGroup/arxiv_cplusplus_research_code", streaming=True, split="train")
|
| 57 |
for sample in iter(ds): print(sample["code"])
|
| 58 |
```
|
| 59 |
|
|
|
|
| 91 |
## Additional Information
|
| 92 |
|
| 93 |
### Dataset Curators
|
| 94 |
+
Matthew Kenney, AlgorithmicResearchGroup, matt@algorithmicresearchgroup.com
|
| 95 |
|
| 96 |
### Citation Information
|
| 97 |
```
|