liyucheng commited on
Commit
2afa150
·
verified ·
1 Parent(s): c31e382

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -2264,3 +2264,36 @@ configs:
2264
  - split: train
2265
  path: 2024-03/train-*
2266
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2264
  - split: train
2265
  path: 2024-03/train-*
2266
  ---
2267
+
2268
+
2269
+ # RealTimeData Monthly Collection - ArXiv
2270
+
2271
+ This datasets contains selected papers from arXiv that were created every months from 2017 to current.
2272
+
2273
+ To access papers in a specific month, simple run the following:
2274
+
2275
+ ```
2276
+ ds = datasets.load_dataset('RealTimeData/arxiv_alltime', '2020-02')
2277
+ ```
2278
+
2279
+ This will give you about 1k selected papers that were created in `2020-02`.
2280
+
2281
+ # Want to crawl the data by your own?
2282
+
2283
+ Please head to [LatestEval](https://github.com/liyucheng09/LatestEval/tree/master/data/monthly_updater) for the crawler script.
2284
+
2285
+ # Credit
2286
+
2287
+ If you find this collection helpful, please consider cite this resource:
2288
+
2289
+ ```
2290
+ @inproceedings{li2024latesteval,
2291
+ title={Latesteval: Addressing data contamination in language model evaluation through dynamic and time-sensitive test construction},
2292
+ author={Li, Yucheng and Guerin, Frank and Lin, Chenghua},
2293
+ booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
2294
+ volume={38},
2295
+ number={17},
2296
+ pages={18600--18607},
2297
+ year={2024}
2298
+ }
2299
+ ```