MajorTimberWolf commited on
Commit
2b787e4
·
0 Parent(s):

Initial commit: Add ICML 2025 submissions dataset

Browse files
.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.json filter=lfs diff=lfs merge=lfs -text
ICML_2025_submissions_huggingface.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1410b815d738f812d3a3e10cd88fe6c857e2078ace9d388834c6a5330ae685d
3
+ size 120242943
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ICML 2025 Submissions Dataset
2
+
3
+ This dataset contains information about ICML 2025 paper submissions including:
4
+
5
+ - Paper titles
6
+ - Decision outcomes (Accept/Reject)
7
+ - Peer reviews
8
+ - Author rebuttals
9
+
10
+ ## Files
11
+
12
+ - `ICML_2025_submissions_huggingface.json`: Main dataset file containing all submission data
13
+
14
+ ## Usage
15
+
16
+ ```python
17
+ import json
18
+
19
+ # Load the dataset
20
+ with open('ICML_2025_submissions_huggingface.json', 'r') as f:
21
+ data = json.load(f)
22
+
23
+ # Example: Print first paper title
24
+ print(data[0]['title'])
25
+ ```
26
+
27
+ ## Data Structure
28
+
29
+ Each entry contains:
30
+ - `title`: Paper title
31
+ - `paper_decision`: Decision outcome
32
+ - `review_1`, `review_2`, etc.: Peer reviews
33
+ - `rebuttals_1`, `rebuttals_2`, etc.: Author rebuttals
34
+
35
+ ## License
36
+
37
+ Please ensure you have appropriate permissions to use this data and comply with ICML's terms of service.