Update README.md
Browse files
README.md
CHANGED
@@ -2198,3 +2198,38 @@ configs:
|
|
2198 |
- split: train
|
2199 |
path: 2025-01/train-*
|
2200 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2198 |
- split: train
|
2199 |
path: 2025-01/train-*
|
2200 |
---
|
2201 |
+
|
2202 |
+
|
2203 |
+
# RealTimeData Monthly Collection - Github Code
|
2204 |
+
|
2205 |
+
This datasets provides the monthly screenshots of the 500 cherry-picked open source projects on GitHub from 2017 to current.
|
2206 |
+
|
2207 |
+
To access articles in a specific month, simple run the following:
|
2208 |
+
|
2209 |
+
```
|
2210 |
+
ds = datasets.load_dataset('RealTimeData/code_alltime', '2020-02')
|
2211 |
+
```
|
2212 |
+
|
2213 |
+
This will give you the `2020-02` version of the 500 selected GitHub repos that were just updated in `2020-02`.
|
2214 |
+
|
2215 |
+
# Want to crawl the data by your own?
|
2216 |
+
|
2217 |
+
Please head to [LatestEval](https://github.com/liyucheng09/LatestEval/tree/master/data/monthly_updater) for the crawler scripts.
|
2218 |
+
|
2219 |
+
# Credit
|
2220 |
+
|
2221 |
+
This is resources is created in this AAAI'24 paper: [LatestEval: Addressing data contamination through dynamic and time-sensitive test construction](https://ojs.aaai.org/index.php/AAAI/article/view/29822).
|
2222 |
+
|
2223 |
+
If you find this collection helpful, please consider cite this paper:
|
2224 |
+
|
2225 |
+
```
|
2226 |
+
@inproceedings{li2024latesteval,
|
2227 |
+
title={Latesteval: Addressing data contamination in language model evaluation through dynamic and time-sensitive test construction},
|
2228 |
+
author={Li, Yucheng and Guerin, Frank and Lin, Chenghua},
|
2229 |
+
booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
|
2230 |
+
volume={38},
|
2231 |
+
number={17},
|
2232 |
+
pages={18600--18607},
|
2233 |
+
year={2024}
|
2234 |
+
}
|
2235 |
+
```
|