How to Compute Conflicts Between Users
Compute conflicts between reviewers and authors of a single submission
Compute conflicts between multiple reviewers and one submission
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
)Compute conflicts between reviewers and authors of all submissions
Compute conflicts between multiple reviewers and all submissions
Last updated
Was this helpful?