How to Compute Conflicts Between Users
Compute conflicts between reviewers and authors of a single submission
If you have not done so, you will need to install and instantiate the openreview-py client.
Compute conflicts between multiple reviewers and one submission
Get the note that you are interested in computing conflicts for.
note = client.get_note(<submission_id>)reviewer_group_id = "robot-learning.org/CoRL/2022/Conference/Submission99/Reviewers"
author_profiles = openreview.tools.get_profiles(
client,
submission.content['authorids']['value'],
with_publications=True
)
reviewers = openreview.tools.get_profiles(
client,
client.get_group(reviewer_group_id).members,
with_publications=True,
with_relations=True
)4. Compute the conflicts. If no conflicts are found, get_conflicts will return an empty list. Otherwise, the list will contain the shared groups that put them in conflict with each other.
The last step is posting the conflict Edges. You can follow this guide to post custom conflicts, and keep the label as 'Conflict'.
Compute conflicts between reviewers and authors of all submissions
Get all submissions, authorids of all submissions, and the author and reviewer Profiles. If you're using a custom policy that does not need the author's publications, you can exclude
with_publications=True
Get conflicts for each reviewer.
The last step is posting the conflict Edges. You can follow this guide to post custom conflicts, and keep the label as 'Conflict'.
Compute conflicts between multiple reviewers and all submissions
Get all active submissions under review and save them to a variable "submissions".
Get the profiles for the new reviewers.
For each submission, get the author_profiles and then get conflicts for each reviewer.
Getting the author profiles for each submission can be inefficient if the venue has too many submissions, you can first query all the author profile ids and get all the profiles together:
Last updated
Was this helpful?