Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add ICML 2024 #3

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
27 changes: 27 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,31 @@ def iclr_not_withdrawn(submission) -> bool:
"inv_ratings_template": "ICLR.cc/2017/conference/-/paper{paper_number}/official/review",
"name": "ICLR 2017",
},
]

# ICML
def icml2024_decision_parser(x):
return {
"ICML 2024 Poster": "Poster",
"ICML 2024 Spotlight": "Spotlight",
"ICML 2024 Oral": "Oral"
}.get(x.content["venue"]["value"])

def icml2024_rating_key(x):
return {
"ICML 2024 Poster": ["8"],
"ICML 2024 Spotlight": ["9"],
"ICML 2024 Oral": ["10"],
}.get(x.content["venue"]["value"], ["7"])

cfg["icml2024"] = [
{
"inv_submissions": "ICML.cc/2024/Conference/-/Submission",
"inv_decision_template": "ICML.cc/2024/Conference/-/Submission{paper_number}/Official_Review",
"approximate_ratings_from_decision": True,
"name": "ICML 2024",
"api_version": "v2",
"decision_parser": icml2024_decision_parser,
"rating_key": icml2024_rating_key
},
]
54,812 changes: 54,812 additions & 0 deletions data/icml2024.json

Large diffs are not rendered by default.

3,422 changes: 1,711 additions & 1,711 deletions docs/iclr2017/index.html

Large diffs are not rendered by default.

6,072 changes: 3,036 additions & 3,036 deletions docs/iclr2018/index.html

Large diffs are not rendered by default.

6,764 changes: 3,382 additions & 3,382 deletions docs/iclr2019/index.html

Large diffs are not rendered by default.

10,908 changes: 5,454 additions & 5,454 deletions docs/iclr2020/index.html

Large diffs are not rendered by default.

10,812 changes: 5,406 additions & 5,406 deletions docs/iclr2021/index.html

Large diffs are not rendered by default.

14,246 changes: 7,123 additions & 7,123 deletions docs/iclr2022/index.html

Large diffs are not rendered by default.

20,858 changes: 10,429 additions & 10,429 deletions docs/iclr2023/index.html

Large diffs are not rendered by default.

32,604 changes: 16,302 additions & 16,302 deletions docs/iclr2024/index.html

Large diffs are not rendered by default.

62,702 changes: 62,702 additions & 0 deletions docs/icml2024/index.html

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@
</div>
</div>

<div class="conference">
<h class="title">ICML</h>
<div>

<span><a href=/icml2024>2024</a></span>

</div>
</div>

<div class="conference">
<h class="title">NeurIPS</h>
<div>
Expand Down
Loading