Spaces:
Sleeping
Sleeping
app init
Browse files
app.py
ADDED
@@ -0,0 +1,269 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
import ast
|
4 |
+
import openai
|
5 |
+
from openai import OpenAI
|
6 |
+
import PyPDF2
|
7 |
+
from PyPDF2 import PdfReader
|
8 |
+
import openreview
|
9 |
+
import json
|
10 |
+
import urllib.request
|
11 |
+
import requests
|
12 |
+
import os
|
13 |
+
my_api_key = os.environ["OPENAI_API_KEY"]
|
14 |
+
client_openai = OpenAI(api_key=my_api_key)
|
15 |
+
|
16 |
+
# converts paper pdf into text
|
17 |
+
def pdf_to_text(pdf):
|
18 |
+
paper_text = ''
|
19 |
+
|
20 |
+
reader = PdfReader(pdf)
|
21 |
+
number_of_pages = len(reader.pages)
|
22 |
+
for p in range(number_of_pages):
|
23 |
+
page = reader.pages[p].get_object()
|
24 |
+
text = page.extract_text()
|
25 |
+
paper_text += text
|
26 |
+
|
27 |
+
return paper_text
|
28 |
+
|
29 |
+
# loads all 2024 ICLR submissions from OpenReview
|
30 |
+
def load_ICLR_submissions():
|
31 |
+
client = openreview.api.OpenReviewClient(
|
32 |
+
baseurl='https://api2.openreview.net',
|
33 |
+
username="[email protected]",
|
34 |
+
password=os.environ["OPENREVIEW_PASSWORD"]
|
35 |
+
)
|
36 |
+
|
37 |
+
venue_id = 'ICLR.cc/2024/Conference'
|
38 |
+
venue_group = client.get_group(venue_id)
|
39 |
+
submission_name = venue_group.content['submission_name']['value']
|
40 |
+
submissions = client.get_all_notes(invitation=f'{venue_id}/-/{submission_name}', details='replies')
|
41 |
+
|
42 |
+
return submissions
|
43 |
+
|
44 |
+
# returns review and pdf paper text given paper id and reviewer id
|
45 |
+
def parse_openreview_id(submissions, paper_id, reviewer_id):
|
46 |
+
paper_url = f"https://openreview.net/pdf?id={paper_id}"
|
47 |
+
|
48 |
+
ind = next((index for index, entry in enumerate(submissions) if entry.id == paper_id), None)
|
49 |
+
curr_review = submissions[ind]
|
50 |
+
bad_review = next((i for i, entry in enumerate(curr_review.details['replies'])
|
51 |
+
if entry['signatures'][0].split('_')[-1] == reviewer_id), None)
|
52 |
+
|
53 |
+
review_content = curr_review.details["replies"][bad_review]["content"]
|
54 |
+
|
55 |
+
urllib.request.urlretrieve(paper_url, f"{paper_id}.pdf")
|
56 |
+
pdf = f"{paper_id}.pdf"
|
57 |
+
pdf_text = pdf_to_text(pdf)
|
58 |
+
|
59 |
+
return review_content, pdf, pdf_text
|
60 |
+
|
61 |
+
|
62 |
+
def create_feedback(review, pdf_text, agent_prompt):
|
63 |
+
|
64 |
+
messages = [{
|
65 |
+
"role": "user",
|
66 |
+
"content": [
|
67 |
+
{
|
68 |
+
"type": "text",
|
69 |
+
"text": agent_prompt
|
70 |
+
},
|
71 |
+
{
|
72 |
+
"type": "text",
|
73 |
+
"text": "Here is the ML conference review"
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"type": "text",
|
77 |
+
"text": json.dumps(review) #json.dumps(review)
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"type": "text",
|
81 |
+
"text": "Finally, read the paper this review was written about"
|
82 |
+
},
|
83 |
+
{
|
84 |
+
"type": "text",
|
85 |
+
"text": pdf_text
|
86 |
+
}
|
87 |
+
]}]
|
88 |
+
|
89 |
+
headers = {
|
90 |
+
"Content-Type": "application/json",
|
91 |
+
"Authorization": f"Bearer {my_api_key}"
|
92 |
+
}
|
93 |
+
payload = {
|
94 |
+
"model": "gpt-4o",
|
95 |
+
"messages": messages,
|
96 |
+
"max_tokens": 1000
|
97 |
+
}
|
98 |
+
|
99 |
+
try:
|
100 |
+
response = requests.post("https://api.openai.com/v1/chat/completions", headers=headers, json=payload)
|
101 |
+
feedback = response.json()["choices"][0]["message"]["content"]
|
102 |
+
except Exception as e:
|
103 |
+
print(f"An unexpected error occurred: {e}")
|
104 |
+
feedback = "an error occured"
|
105 |
+
|
106 |
+
return feedback
|
107 |
+
|
108 |
+
agent_prompt = """
|
109 |
+
You are given a peer review of a machine learning paper submitted to a top-tier ML conference on OpenReview.
|
110 |
+
First, you will read the text of the review and then the paper it was written about.
|
111 |
+
Give feedback to the to the reviewer so that it becomes a high-quality review.
|
112 |
+
Here is a checklist. For each item, determine if the review passes or fails. If it fails, provide feedback accordingly. Follow the below guidelines for your feedback:
|
113 |
+
|
114 |
+
1. The reviewer does not ask for anything that is OBVIOUSLY already present in the paper. You should be ABSOLUTELY certain the reviewer made an error, otherwise do NOT comment on their point.
|
115 |
+
If you find such a case, quote the specific statement from the review and provide the exact quote from the paper that directly addresses or contradicts it.
|
116 |
+
Ensure that the quote from the paper specifically answers the claim or request made by the reviewer, and explain why the selected quote is relevant.
|
117 |
+
If the reviewer has a question, you do not need to respond. If you respond, point to a specific section or quote from the paper and ask “does this provide what you were looking for?”
|
118 |
+
2. The review does not make any vague, unjustifiable, or unsupported claims.
|
119 |
+
If there are any vague comments in the review, ask the reviewer to be more specific.
|
120 |
+
3. If the reviewer claims the paper isn't novel, they should explain why and specify the paper(s) they believe this work is similar to.
|
121 |
+
If they do not already do this, ask the reviewer to do so.
|
122 |
+
4. The reviewer does not make any personal attacks against the paper and/or author(s).
|
123 |
+
For example, they call the work "incompetent" without justifying why.
|
124 |
+
If they do, suggest the reviewer revise their feedback to remove those attacks.
|
125 |
+
|
126 |
+
Be concise, limiting your response to 2-3 sentences per checklist item. Do not repeat anything that the reviewer already included in their review, and do not summarize your feedback at the end.
|
127 |
+
|
128 |
+
Here are some examples of good responses to reviews that may fall under each of these categories.
|
129 |
+
|
130 |
+
1. A question / claim that is either already answered in the paper, or contradicts with what is provided in the paper.
|
131 |
+
|
132 |
+
For such cases, we would like to point the reviewer specifically to the relevant part of the paper through direct quoting. Only send a quote if it verbatim exists in the paper or review.
|
133 |
+
|
134 |
+
Example 1:
|
135 |
+
|
136 |
+
**Reviewer Comment:** *..In Figure 4, the efficiency experiments have no results for Transformer models, which is a key limitation of the paper.I*
|
137 |
+
|
138 |
+
**Feedback to reviewer:** You may want to check Section 3, Figure 5 of the paper that has the Transformer results. See: “In Transformers, the proposed technique provides 25% relative improvement in wall-clock time (Figure 5)”.
|
139 |
+
|
140 |
+
Example 2:
|
141 |
+
**Reviewer Comment:** *Figure 2. Are people forced to select a choice or could they select 'I don't know'? Did you monitor response times to see if the manipulated images required longer times for individuals to pass decisions? In Appendix A, you mention “the response times will also be released upon publication”, however I do not see further information about this in the paper.*
|
142 |
+
|
143 |
+
As the reviewer already refers to the key part of the paper with quotes and asks a question that is not answered in the paper, we do not need to give feedback to this comment.
|
144 |
+
|
145 |
+
2. Lack of clarity or justification for a criticism: The reviewer criticizes the paper without providing a concrete justification. This results in points that are not actionable or harder to respond to.
|
146 |
+
|
147 |
+
For such cases, we would like to nudge the reviewer to justify their claim.
|
148 |
+
|
149 |
+
Example 1:
|
150 |
+
**Reviewer Comment:** *A key limitation is that this paper motivates from the TTT perspective, but no TTT experiments are performed and compared, e.g., comparing with (Sun et al., 2020).*
|
151 |
+
|
152 |
+
**Feedback to reviewer:** In general, a “TTT experiment” is not a broadly known terminology. It would be very helpful if you could describe what specific experiment you are referring to, and why it is important for this paper.
|
153 |
+
|
154 |
+
Example 2:
|
155 |
+
**Reviewer Comment:** *W1: Many of the key pieces of this work have been considered before separately. I think some additional discussion of related work is needed.
|
156 |
+
|
157 |
+
W2: It appears that the linear mode connectivity results may be somewhat brittle.*
|
158 |
+
|
159 |
+
**Feedback to reviewer:** For W1, It would be very helpful to specify or cite what key pieces are considered in earlier works, how they relate to the current work, and specify what is missing. For W2, could you elaborate on why you see the results as brittle and what would be convincing evidence so that the feedback is more actionable?
|
160 |
+
|
161 |
+
Example 3:
|
162 |
+
**Reviewer Comment:** *The data/model size are not large-scale, thus the paper will not be impactful.*
|
163 |
+
|
164 |
+
**Feedback to reviewer:** Please consider putting this claim in context. If possible, please discuss why you consider the experiments to be not large scale using precedents, why it is important to have larger scale experiments in this context and how it would inform or improve the manuscript.
|
165 |
+
|
166 |
+
3. Novelty claims: The reviewer claims lack of novelty without providing concrete justification.
|
167 |
+
|
168 |
+
For this case, we would like to nudge the reviewer to provide the justification of the claim, through prompting them to provide the most relevant references, the relationships, and specifying similarities or differences.
|
169 |
+
|
170 |
+
Example 1:
|
171 |
+
**Reviewer Comment:** *.. The paper’s novelty is limited considering the ICLR standards, as there are very close works [1,2,3]. *
|
172 |
+
|
173 |
+
**Feedback to reviewer:** Please consider the reasons for why the novelty is limited, and specify what ICLR standards are in this context. In particular, it would be very helpful to all parties involved if you give examples of the closest papers, its similarities, and differences with the methods or results in the current paper.
|
174 |
+
|
175 |
+
Example 2:
|
176 |
+
**Reviewer Comment:** *.. DASHA is a mash-up between MARINA and existing distributed nonconvex optimization methods. Other than the fact that three variants of DASHA get rid of the uncompressed synchronization in MARINA, this reviewer could not pinpoint a difference between MARINA and DASHA. As such, the main novelty of this work seems to be in terms of theoretical analysis of MARINA when the uncompressed synchronization step is removed. The authors could have done a better job of clarifying where does this novelty lie in the analysis (e.g., pinpointing the key analytical approaches in the lemma that helped improve the analysis)*
|
177 |
+
|
178 |
+
As the novelty claim is already well-justified and an actionable question is asked, we do not need to give feedback to this review.
|
179 |
+
|
180 |
+
4. Personal attack, ad hominem: The review contains an attack on the authors. This can be about the personality, the knowledge, or the experience of the authors.
|
181 |
+
|
182 |
+
For this case, we would like to kindly warn the reviewer about their comment.
|
183 |
+
|
184 |
+
Example 1:
|
185 |
+
**Reviewer Comment:** *.. The authors clearly do not live in the real world and do not care about people or downstream effects of their research. *
|
186 |
+
|
187 |
+
**Feedback to the reviewer:** We kindly suggest you revise this comment, as it includes remarks about the personalities or intents of the authors.
|
188 |
+
|
189 |
+
Your instructions: Go through all comments in the review. Check each comment using the above guidelines. Only address issues with the review that fail according to the above guidelines.
|
190 |
+
Your feedback will be sent directly to reviewers. Follow the below format when sending your review:
|
191 |
+
|
192 |
+
- Comment: {{the comment of interest}}
|
193 |
+
- Feedback: {{write your short feedback}}
|
194 |
+
|
195 |
+
and send a list of comments and feedbacks. If you do not identify issues for a comment, do not add it to the list or send feedback. DO NOT mention that there is a checklist or guidelines.
|
196 |
+
|
197 |
+
If you cannot identify any issues, respond with "Great review, thanks for your hard work!"
|
198 |
+
"""
|
199 |
+
|
200 |
+
# Set page to wide mode
|
201 |
+
st.set_page_config(layout="wide")
|
202 |
+
|
203 |
+
# Sidebar for navigation
|
204 |
+
st.sidebar.title('Input review and PDF or OpenReview ID')
|
205 |
+
|
206 |
+
option = st.sidebar.radio(
|
207 |
+
"Choose one input option:",
|
208 |
+
("Upload PDF with Review", "OpenReview paper ID"))
|
209 |
+
|
210 |
+
# # Add a text input box to the sidebar for user input
|
211 |
+
# user_input = st.sidebar.text_input("Enter OpenReview ID (e.g. xC8xh2RSs2)")
|
212 |
+
|
213 |
+
user_input = False
|
214 |
+
|
215 |
+
if option == "OpenReview paper ID":
|
216 |
+
paper_id = st.text_input("Enter OpenReview ID (e.g. xC8xh2RSs2):")
|
217 |
+
reviewer_id = st.text_input("Enter reviewer ID (e.g. gNxe):")
|
218 |
+
if paper_id and reviewer_id:
|
219 |
+
upload_file = False
|
220 |
+
user_input = True
|
221 |
+
submissions = load_ICLR_submissions()
|
222 |
+
review, pdf, pdf_text = parse_openreview_id(submissions, paper_id, reviewer_id)
|
223 |
+
# st.write(f"Review text: {pdf_text}")
|
224 |
+
|
225 |
+
elif option == "Upload PDF with Review":
|
226 |
+
user_text = st.text_area("Enter review:")
|
227 |
+
uploaded_file = st.file_uploader("Upload PDF", type="pdf")
|
228 |
+
if user_text and uploaded_file:
|
229 |
+
upload_file = True
|
230 |
+
user_input = True
|
231 |
+
review, pdf = user_text, uploaded_file
|
232 |
+
pdf_text = pdf_to_text(pdf)
|
233 |
+
|
234 |
+
# st.write(f"Review text: {pdf_text}")
|
235 |
+
# st.write(f"You entered review: {user_text}")
|
236 |
+
# st.write(f"Uploaded file: {uploaded_file.name}")
|
237 |
+
|
238 |
+
if user_input:
|
239 |
+
# Run your pipeline to generate the dataframe based on user input
|
240 |
+
feedback = create_feedback(review, pdf_text, agent_prompt)
|
241 |
+
|
242 |
+
st.title(f'Review feedback')
|
243 |
+
|
244 |
+
if not upload_file:
|
245 |
+
# Create three columns
|
246 |
+
col1, col2, col3 = st.columns(3)
|
247 |
+
|
248 |
+
with col3:
|
249 |
+
st.subheader('PDF Link')
|
250 |
+
pdf_url = f"https://openreview.net/pdf?id={paper_id}"
|
251 |
+
st.markdown(f"[Click here to view PDF]({pdf_url})")
|
252 |
+
|
253 |
+
else:
|
254 |
+
# Create two columns
|
255 |
+
col1, col2 = st.columns(2)
|
256 |
+
|
257 |
+
|
258 |
+
# Column 1: Display review fields
|
259 |
+
with col1:
|
260 |
+
st.subheader("Review")
|
261 |
+
st.write(json.dumps(review))
|
262 |
+
|
263 |
+
# Column 2: Display feedback
|
264 |
+
with col2:
|
265 |
+
st.subheader('Feedback')
|
266 |
+
st.write(feedback)
|
267 |
+
|
268 |
+
else:
|
269 |
+
st.title('Please enter OpenReview ID or upload PDF with review to generate feedback')
|