File size: 895 Bytes
12bf981 2b787e4 12bf981 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
---
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
```python
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.
|