qinyu.luo commited on
Commit Β·
42de8b3
1
Parent(s): 2ee3721
Auto-update wiki dataset: 2025-06-06 03:56:34
Browse files- README.md +113 -0
- dataset_infos.json +3 -0
README.md
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-sa-3.0
|
| 3 |
+
tags:
|
| 4 |
+
- wikipedia
|
| 5 |
+
- events
|
| 6 |
+
- news
|
| 7 |
+
- factual-data
|
| 8 |
+
- json
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
size_categories:
|
| 12 |
+
- 100K<n<1M
|
| 13 |
+
pretty_name: "DeepResearch Wiki Data"
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# π DeepResearch Wiki Data
|
| 17 |
+
|
| 18 |
+
A comprehensive collection of Wikipedia articles about recent events (2023-2025), stored in JSON format. This dataset serves as the source material for the CriticSearch Report Benchmark, containing detailed information about global events, elections, disasters, and other significant occurrences.
|
| 19 |
+
|
| 20 |
+
## π Dataset Overview
|
| 21 |
+
|
| 22 |
+
- **Time Period**: 2023-2025
|
| 23 |
+
- **Total Articles**: 271 articles
|
| 24 |
+
- **Format**: JSON files
|
| 25 |
+
- **Source**: Wikipedia
|
| 26 |
+
- **Last Updated**: 2025-06-06
|
| 27 |
+
|
| 28 |
+
## π Content Categories
|
| 29 |
+
|
| 30 |
+
- **Elections**: 140 articles\n- **Other**: 81 articles\n- **Natural Disasters**: 20 articles\n- **Sports**: 14 articles\n- **Social Movements**: 8 articles\n- **International Conflicts**: 8 articles
|
| 31 |
+
|
| 32 |
+
## π
Year Distribution
|
| 33 |
+
|
| 34 |
+
- **2023**: 83 articles\n- **2024**: 112 articles\n- **2025**: 67 articles
|
| 35 |
+
|
| 36 |
+
## π Data Format
|
| 37 |
+
|
| 38 |
+
Each article is stored in a separate JSON file with the following structure:
|
| 39 |
+
|
| 40 |
+
```json
|
| 41 |
+
{
|
| 42 |
+
"title": "2024_United_States_presidential_election",
|
| 43 |
+
"url": "https://en.wikipedia.org/wiki/2024_United_States_presidential_election",
|
| 44 |
+
"content": {
|
| 45 |
+
"sections": [
|
| 46 |
+
{
|
| 47 |
+
"title": "Background",
|
| 48 |
+
"level": 1,
|
| 49 |
+
"content": "Full section content..."
|
| 50 |
+
}
|
| 51 |
+
],
|
| 52 |
+
"metadata": {
|
| 53 |
+
"last_updated": "2024-03-20",
|
| 54 |
+
"language": "en"
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
}
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## π Quick Start
|
| 61 |
+
|
| 62 |
+
### Loading the Dataset
|
| 63 |
+
|
| 64 |
+
```python
|
| 65 |
+
from datasets import load_dataset
|
| 66 |
+
|
| 67 |
+
# Load the dataset
|
| 68 |
+
dataset = load_dataset("Looogic/DeepResearch_wiki_data")
|
| 69 |
+
|
| 70 |
+
# Access the articles
|
| 71 |
+
articles = dataset['train'] # All articles are in the train split
|
| 72 |
+
|
| 73 |
+
print(f"Total articles: {len(articles)}")
|
| 74 |
+
|
| 75 |
+
# Browse articles by category
|
| 76 |
+
for article in articles:
|
| 77 |
+
if "election" in article['title'].lower():
|
| 78 |
+
print(f"Election article: {article['title']}")
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
## π Data Quality
|
| 82 |
+
|
| 83 |
+
- β
All articles sourced directly from Wikipedia
|
| 84 |
+
- β
Regular updates to maintain freshness
|
| 85 |
+
- β
Consistent JSON structure
|
| 86 |
+
- β
UTF-8 encoding
|
| 87 |
+
- β
Preserved section hierarchy
|
| 88 |
+
- β
Complete metadata
|
| 89 |
+
|
| 90 |
+
## π Citation
|
| 91 |
+
|
| 92 |
+
```bibtex
|
| 93 |
+
@dataset{deepresearch_wiki_data_2024,
|
| 94 |
+
title={DeepResearch Wiki Data},
|
| 95 |
+
author={DeepResearch Team},
|
| 96 |
+
year={2024},
|
| 97 |
+
publisher={Hugging Face},
|
| 98 |
+
url={https://huggingface.co/datasets/Looogic/DeepResearch_wiki_data},
|
| 99 |
+
note={A comprehensive collection of Wikipedia articles about recent events (2023-2025)}
|
| 100 |
+
}
|
| 101 |
+
```
|
| 102 |
+
|
| 103 |
+
## βοΈ License
|
| 104 |
+
|
| 105 |
+
This dataset is derived from Wikipedia content and is available under the Creative Commons Attribution-ShareAlike 3.0 Unported License (CC BY-SA 3.0).
|
| 106 |
+
|
| 107 |
+
## π Updates
|
| 108 |
+
|
| 109 |
+
The dataset is regularly updated to include new events and developments. Check the commit history for the latest updates.
|
| 110 |
+
|
| 111 |
+
---
|
| 112 |
+
|
| 113 |
+
*Built with π for advancing factual AI research*
|
dataset_infos.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4729f85afc9de2e4495e4085513aa2ec4d5080fdbeb876a4aaf1768311a7c39
|
| 3 |
+
size 300
|