Looogic/DeepResearch_wiki_data
๐ DeepResearch Wiki Data 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. ๐ Dataset Overview Time Period: 2023-2025 Total Articles: 271 articles Format: JSON files Source: Wikipedia Last Updated: 2025-06-06โฆ See the full description on the dataset page: https://huggingface.co/datasets/Looogic/DeepResearch_wiki_data.
๐ DeepResearch Wiki Data
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.
๐ Dataset Overview
- Time Period: 2023-2025
- Total Articles: 271 articles
- Format: JSON files
- Source: Wikipedia
- Last Updated: 2025-06-06
๐ Content Categories
- 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
๐ Year Distribution
- 2023: 83 articles\n- 2024: 112 articles\n- 2025: 67 articles
๐ Data Format
Each article is stored in a separate JSON file with the following structure:
{
"title": "2024_United_States_presidential_election",
"url": "https://en.wikipedia.org/wiki/2024_United_States_presidential_election",
"content": {
"sections": [
{
"title": "Background",
"level": 1,
"content": "Full section content..."
}
],
"metadata": {
"last_updated": "2024-03-20",
"language": "en"
}
}
}๐ Quick Start
Loading the Dataset
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Looogic/DeepResearch_wiki_data")
# Access the articles
articles = dataset['train'] # All articles are in the train split
print(f"Total articles: {len(articles)}")
# Browse articles by category
for article in articles:
if "election" in article['title'].lower():
print(f"Election article: {article['title']}")๐ Data Quality
- โ All articles sourced directly from Wikipedia
- โ Regular updates to maintain freshness
- โ Consistent JSON structure
- โ UTF-8 encoding
- โ Preserved section hierarchy
- โ Complete metadata
๐ Citation
@dataset{deepresearch_wiki_data_2024,
title={DeepResearch Wiki Data},
author={DeepResearch Team},
year={2024},
publisher={Hugging Face},
url={https://huggingface.co/datasets/Looogic/DeepResearch_wiki_data},
note={A comprehensive collection of Wikipedia articles about recent events (2023-2025)}
}โ๏ธ License
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).
๐ Updates
The dataset is regularly updated to include new events and developments. Check the commit history for the latest updates.
Built with ๐ for advancing factual AI research
