jskim commited on
Commit
2745724
·
1 Parent(s): 091bb76

update instruction

Browse files
Files changed (1) hide show
  1. app.py +16 -12
app.py CHANGED
@@ -194,17 +194,21 @@ Below we describe how to use the tool. Also feel free to check out the [video]()
194
 
195
  ##### Input
196
  - The tool requires two inputs: (1) an academic paper's abstract in a text format, (2) and a potential reviewer's [Semantic Scholar](https://www.semanticscholar.org/) profile link. Once you put in a valid profile link, the reviewer's name will be displayed.
197
- - Once the name is confirmed, press the `What Makes this a Good Match?` button.
198
- ##### Similar Papers From the Reviewer
199
- - Based on the input information above, the tool will first search for similar papers from the reviewer's previous publications using [Semantic Scholar API](https://www.semanticscholar.org/product/api).
200
- - It will list top 10 similar papers along with the **affinity scores** (ranging from 0 -1) for each, computed using text representations from a [language model](https://github.com/allenai/specter/tree/master/specter).
201
- - You can click on different papers to see title, abstract, and affinity scores in detail.
202
- ##### Relevant Parts
203
- - Below the list of papers, we highlight relevant parts in the selected paper compared to the submission abstract.
204
- - On the left, you will see individual sentences from the submission abstract you can select from.
205
- - On the right, you will see the abstract of the selected paper, with **highlights**.
206
- - **<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.
207
- - **<span style="color:black;background-color:#5296D5;">Blue highlights</span>**: phrases from the reviewer's paper abstract that is included in the selected sentence.
 
 
 
 
208
  - To see relevant parts in a different paper from the reviewer, select the new paper.
209
  -------
210
  """
@@ -307,7 +311,7 @@ Below we describe how to use the tool. Also feel free to check out the [video]()
307
 
308
  ## Show more button
309
  with gr.Row():
310
- see_more_rel_btn = gr.Button('See more relevant parts from papers', visible=False)
311
 
312
  ### PAPER INFORMATION
313
 
 
194
 
195
  ##### Input
196
  - The tool requires two inputs: (1) an academic paper's abstract in a text format, (2) and a potential reviewer's [Semantic Scholar](https://www.semanticscholar.org/) profile link. Once you put in a valid profile link, the reviewer's name will be displayed.
197
+ - Once the name is confirmed, press the `What Makes This a Good Match?` button.
198
+ - Based on the input information, the tool will first search for similar papers from the reviewer's previous publications using [Semantic Scholar API](https://www.semanticscholar.org/product/api).
199
+ ##### Relevant Parts from Top Papers
200
+ - You will be shown three most relevant papers from the reviewer with high **affinity scores** (ranging from 0 - 1) computed using text representations from a [language model](https://github.com/allenai/specter/tree/master/specter).
201
+ - For each of the paper, we present relevant pieces of information from the submission and the paper: two pairs of (sentence relevance score, sentence from the submission abstract, sentnece from the paper abstract)
202
+ - **<span style="color:black;background-color:#5296D5;">Blue highlights</span>** inidicate phrases that are included in both sentences.
203
+ ##### More Relevant Parts
204
+ - If the information above is not enough, click `See more relevant parts from other papers` button.
205
+ - You will see a list top 10 similar papers along with the affinity scores for each.
206
+ - You can select different papers from the list to see title, abstract, and affinity scores in detail.
207
+ - Below the list of papers, we highlight relevant parts from the selected paper to different sentences of the submission abstract.
208
+ - On the left, you will see individual sentences from the submission abstract to select from.
209
+ - On the right, you will see the abstract of the selected paper, with **highlights** incidating relevant parts to the selected sentence.
210
+ - **<span style="color:black;background-color:#DB7262;">Red highlights</span>**: sentences with high semantic similarity to the selected sentence.
211
+ - **<span style="color:black;background-color:#5296D5;">Blue highlights</span>**: phrases included in the selected sentence.
212
  - To see relevant parts in a different paper from the reviewer, select the new paper.
213
  -------
214
  """
 
311
 
312
  ## Show more button
313
  with gr.Row():
314
+ see_more_rel_btn = gr.Button('See more relevant parts from other papers', visible=False)
315
 
316
  ### PAPER INFORMATION
317