CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-sa-3.0updated 1y agoView on Hugging Face
0likes308downloads
Dataset Card

๐Ÿ“š 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:

json
{
  "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

python
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

bibtex
@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