Computing Conflicts Between Users
note = client.get_note(<submission_id>)author_profiles = openreview.tools.get_profiles(
client,
note.content["authorids"],
with_publications=True
)
reviewers = openreview.tools.get_profiles(
client,
client.get_group(reviewer_group_id).members,
with_publications=True
)for reviewer in reviewers:
print(reviewer.id)
conflicts = openreview.tools.get_conflicts(
author_profiles,
reviewer,
policy='default',
n_years=5
)
print(conflicts)Last updated
Was this helpful?