openreview / openreview-expertise

Expertise modeling for the OpenReview matching system
MIT License
32 stars 4 forks source link

Expertise API: support venueid instead of invitation to get all the submissions #141

Closed melisabok closed 1 year ago

melisabok commented 1 year ago

In the openreview API 2 the papers that are under submission will be marked with field "venueid".

A submission note can have multiple invitation like submission, withdrawn, desk rejected, etc.

To recognize which papers are under review we should filter the notes by 'content.venueid': ICML.cc/2023/Conference/Submission

{
   name: 'ICML expertise',
   entityA: {
      type: Group,
      memberOf: ICML.cc/2023/Conference/Reviewers
   },
   entityB: {
     type: None,
     withVenueid: ICML.cc/2023/Conference/Submission
   }

}

The expertise API should get the notes as

client.get_all_notes(content = { 'venueid': 'ICML.cc/2023/Conference/Submission'})
haroldrubio commented 1 year ago

Is it possible to get notes with both venueid and an invitation? Or if a venueid is provided, I should only get the notes by the venueid?

melisabok commented 1 year ago

you can use both parameters but I'm going to send you the venueid only.