ICML25-Dataset / README.md
MajorTimberWolf's picture
"Merge branch 'main' of https://huggingface.co/datasets/MajorTimberWolf/ICML25-Dataset"
12bf981
metadata
license: mit

ICML 2025 Submissions Dataset

This dataset contains information about ICML 2025 paper submissions including:

  • Paper titles
  • Decision outcomes (Accept/Reject)
  • Peer reviews
  • Author rebuttals

Files

  • ICML_2025_submissions_huggingface.json: Main dataset file containing all submission data

Usage

import json

# Load the dataset
with open('ICML_2025_submissions_huggingface.json', 'r') as f:
    data = json.load(f)

# Example: Print first paper title
print(data[0]['title'])

Data Structure

Each entry contains:

  • title: Paper title
  • paper_decision: Decision outcome
  • review_1, review_2, etc.: Peer reviews
  • rebuttals_1, rebuttals_2, etc.: Author rebuttals

License

This dataset is released under the MIT License. Please ensure you have appropriate permissions to use this data and comply with ICML's terms of service.