How to enable bidding for Senior Area Chair Assignment
# Add the request form id as a string
request_form_id = ''
# Assign the venueID to a variable
venue_id = ''
# Change dates
bid_start_date = datetime.datetime(year=2024,month=9,day=30,hour=12,minute=0,second=0)
bid_due_date = datetime.datetime(year=2024,month=10,day=8,hour=12,minute=30,second=0)
venue = openreview.get_conference(client, request_form_id, setup=False)
sac_bid_stage = openreview.stages.BidStage(
f'{venue_id}/Senior_Area_Chairs',
start_date = bid_start_date,
due_date = bid_due_date,
request_count = 25,
score_ids=[f'{venue_id}/Senior_Area_Chairs/-/Affinity_Score']
)
venue.bid_stages = [sac_bid_stage]
venue.create_bid_stages()PreviousHow to make papers public after decisions are madeNextHow to release the identities of authors of accepted papers only
Last updated
Was this helpful?