jskim commited on
Commit
4f8ef7b
1 Parent(s): a6756ef

changing location of text

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -172,10 +172,8 @@ Below we describe how to use the tool. Also feel free to check out the [video]()
172
  - On the left, you will see individual sentences from the submission abstract you can select from.
173
  - On the right, you will see the abstract of the selected paper, with **highlights**.
174
  - **<span style="color:black;background-color:#DB7262;">Red highlights</span>**: sentences from the reviewer's paper abstract with high semantic similarity to the selected sentence.
175
- - **<span style="color:black;background-color:#5296D5;">Blue highlights</span>**: matching phrases from the reviewer's paper abstract that is included in the selected sentence.
176
  - To see relevant parts in a different paper from the reviewer, select another paper above and re-click `Show Relevant Parts from Selected Paper` button to refresh.
177
-
178
- **Disclaimer.** This tool and its output should not serve as the sole justification for confirming a match for the submission. It is intended as a supplementary tool that the user may use at their discretion; the correctness of the output of the tool is not guaranteed. This may be improved by updating the internal models used to compute the affinity scores and sentence relevance, which may require additional research independently. The tool does not compromise the privacy of the reviewers as it relies only on their publicly-available information (e.g., names and list of previously published papers).
179
  """
180
  )
181
 
@@ -275,6 +273,13 @@ Below we describe how to use the tool. Also feel free to check out the [video]()
275
  affinity
276
  ]
277
  )
 
 
 
 
 
 
 
278
 
279
  if __name__ == "__main__":
280
  demo.launch()
 
172
  - On the left, you will see individual sentences from the submission abstract you can select from.
173
  - On the right, you will see the abstract of the selected paper, with **highlights**.
174
  - **<span style="color:black;background-color:#DB7262;">Red highlights</span>**: sentences from the reviewer's paper abstract with high semantic similarity to the selected sentence.
175
+ - **<span style="color:black;background-color:#5296D5;">Blue highlights</span>**: phrases from the reviewer's paper abstract that is included in the selected sentence.
176
  - To see relevant parts in a different paper from the reviewer, select another paper above and re-click `Show Relevant Parts from Selected Paper` button to refresh.
 
 
177
  """
178
  )
179
 
 
273
  affinity
274
  ]
275
  )
276
+
277
+ gr.Markdown(
278
+ """
279
+ ---------
280
+ **Disclaimer.** This tool and its output should not serve as the sole justification for confirming a match for the submission. It is intended as a supplementary tool that the user may use at their discretion; the correctness of the output of the tool is not guaranteed. This may be improved by updating the internal models used to compute the affinity scores and sentence relevance, which may require additional research independently. The tool does not compromise the privacy of the reviewers as it relies only on their publicly-available information (e.g., names and list of previously published papers).
281
+ """
282
+ )
283
 
284
  if __name__ == "__main__":
285
  demo.launch()