Spaces:
Running
Running
Yiqiao Jin
commited on
Commit
·
49bc430
1
Parent(s):
1d838f0
Update Dropbox links
Browse files- README.md +1 -1
- agentreview/role_descriptions.py +7 -5
README.md
CHANGED
@@ -51,7 +51,7 @@ framework, which effectively disentangles the impacts of multiple latent factors
|
|
51 |
|
52 |
**Download the data**
|
53 |
|
54 |
-
Download both zip files in the [Dropbox](https://www.dropbox.com/scl/fo/etzu5h8kwrx8vrcaep9tt/ALCnxFt2cT9aF477d-h1-E8?rlkey=9r5ep9psp8u4yaxxo9caf5nnc&st=
|
55 |
|
56 |
Unzip [AgentReview_Paper_Data.zip](https://www.dropbox.com/scl/fi/l17brtbzsy3xwflqd58ja/AgentReview_Paper_Data.zip?rlkey=vldiexmgzi7zycmz7pumgbooc&st=b6g3nkry&dl=0) under `data/`, which contains:
|
57 |
1. The PDF versions of the paper
|
|
|
51 |
|
52 |
**Download the data**
|
53 |
|
54 |
+
Download both zip files in the [Dropbox](https://www.dropbox.com/scl/fo/etzu5h8kwrx8vrcaep9tt/ALCnxFt2cT9aF477d-h1-E8?rlkey=9r5ep9psp8u4yaxxo9caf5nnc&st=aymhgu32&dl=0):
|
55 |
|
56 |
Unzip [AgentReview_Paper_Data.zip](https://www.dropbox.com/scl/fi/l17brtbzsy3xwflqd58ja/AgentReview_Paper_Data.zip?rlkey=vldiexmgzi7zycmz7pumgbooc&st=b6g3nkry&dl=0) under `data/`, which contains:
|
57 |
1. The PDF versions of the paper
|
agentreview/role_descriptions.py
CHANGED
@@ -88,6 +88,7 @@ def get_instructions_for_overall_scores(author_type: str) -> str:
|
|
88 |
|
89 |
return instruction
|
90 |
|
|
|
91 |
def get_reviewer_description(is_benign: bool = None, is_knowledgeable: bool = None, is_responsible: bool = None,
|
92 |
provides_numeric_rating:
|
93 |
bool = True, knows_authors: bool = False, phase: str = "reviewer_write_reviews"):
|
@@ -199,11 +200,12 @@ def get_reviewer_description(is_benign: bool = None, is_knowledgeable: bool = No
|
|
199 |
"critically analyze the methodologies, and carefully consider the paper's "
|
200 |
"contribution to the field. ")
|
201 |
|
202 |
-
desc_irresponsible_reviewer = (
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
|
|
207 |
|
208 |
if is_responsible is not None:
|
209 |
|
|
|
88 |
|
89 |
return instruction
|
90 |
|
91 |
+
|
92 |
def get_reviewer_description(is_benign: bool = None, is_knowledgeable: bool = None, is_responsible: bool = None,
|
93 |
provides_numeric_rating:
|
94 |
bool = True, knows_authors: bool = False, phase: str = "reviewer_write_reviews"):
|
|
|
200 |
"critically analyze the methodologies, and carefully consider the paper's "
|
201 |
"contribution to the field. ")
|
202 |
|
203 |
+
desc_irresponsible_reviewer = (
|
204 |
+
"As a lazy reviewer, your reviews tend to be superficial and hastily done. You do not like "
|
205 |
+
"to discuss in the reviewer-AC discussion. "
|
206 |
+
"Your assessments might overlook critical details, lack depth in analysis, "
|
207 |
+
"fail to recognize novel contributions, "
|
208 |
+
"or offer generic feedback that does little to advance the paper's quality.")
|
209 |
|
210 |
if is_responsible is not None:
|
211 |
|