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.

Read for more information about conflict policies.

Compute conflicts between multiple reviewers and one submission

  1. 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.

  1. 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

  1. 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

  1. Get conflicts for each reviewer.

  1. 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

  1. Get all active submissions under review and save them to a variable "submissions".

  2. Get the profiles for the new reviewers.

  1. 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?