How to create a custom submission export
Get Submissions
Extract data
Method 1: Loop
for submission in submissions:
print(submission.number, submission.content['title'].get(['value'],''))
author_profiles = openreview.tools.get_profiles(client, submission.content['authorids'].get(['value'],''))
for author_profile in author_profiles:
print(author_profile.get_preferred_name(pretty=True), author_profile.content.get('history', [{}])[0])Method 2: Table
Combining Submissions with Other information
Profiles
Example: Check if any authors have a particular trait
Example: Label profiles with submission number
Son güncelleme
Bu yararlı oldu mu?