openreview-py
openreview-py copied to clipboard
Trouble Accessing Neurips 2023 Submissions
Hi, I'm using the following pipeline which allows me to retrieve NeurIPS main conference submissions from 2021 and 2022. However, when I try to use it for 2023, it doesn't work.
client = openreview.Client(baseurl='https://api.openreview.net',
username=USERNAME,
password=PASSWORD)
output = client.get_all_notes(content={'venueid': venue}, details='directReplies')
The above works with venue = 'NeurIPS.cc/2021/Conference'
and with venue = 'NeurIPS.cc/2022/Conference'
, returning a list of submissions, but not with venue='NeurIPS.cc/2023/Conference'
(returns an empty list). I directly got the venue names from running client.get_group(id='venues').members
and filtering for members with 'NeurIPS', 'conference', and containing the desired year. I'm not sure why the 2021 and 2022 venues work but not the 2023.
Could someone please point me to where I might be going wrong? Thanks!