Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

hide_fields, select from the dropdown all the fields you would like to hide. 


import openreview
from openreview.api import OpenReviewClient
live_client_v2 = OpenReviewClient(
baseurl='https://api2.openreview.net',
username=YOUR_USERNAME,
password=YOUR_PASSWORD
)#set up venue and user information
profile_id = YOUR_TILDE_ID
from_venue_id = FROM_VENUE_ID
from_group_name = FROM_GROUP_NAME #Typically 'Reviewers' or 'Area_Chairs'
#get edges for from_venue
expertise_edges = openreview_client.get_all_edges(invitation=f"{from_venue_id}/{from_group_name}/-/Expertise_Selection",
tail=profile_id)to_venue_id = TO_VENUE_ID
to_group_name = TO_GROUP_NAME
invitation = f"{to_venue_id}/{to_group_name}/-/Expertise_Selection"
for edge in expertise_edges:
openreview_client.post_edge(openreview.api.Edge(
invitation = invitation,
head = edge.head,
tail = edge.tail,
signatures = [profile_id],
label = 'Exclude'
))