davanstrien HF Staff commited on
Commit
3cd20df
·
1 Parent(s): 466c476

Update paper claiming process in get_papers

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -108,8 +108,8 @@ def get_papers(
108
  results = (
109
  "# Papers already indexed by Hugging Face which you haven't claimed\n"
110
  + "These papers are already indexed by Hugging Face, but you haven't"
111
- " claimed them yet. You can claim them by clicking on the link and then"
112
- " clicking on the 'Claim' button on the Hugging Face papers page.\n"
113
  )
114
  for paper in already_claimed[False]:
115
  url = f"https://huggingface.co/papers/{paper['id']}"
@@ -156,7 +156,10 @@ with gr.Blocks() as demo:
156
  )
157
  positive_arxiv_ids = gr.Textbox(
158
  placeholder="1910.01108",
159
- label="ArXiv ID for a paper for which you are an author, separate multiple IDs with commas",
 
 
 
160
  interactive=True,
161
  )
162
  btn = gr.Button("Get papers")
 
108
  results = (
109
  "# Papers already indexed by Hugging Face which you haven't claimed\n"
110
  + "These papers are already indexed by Hugging Face, but you haven't"
111
+ " claimed them yet. You can claim them by clicking on the link to the"
112
+ " paper and then clicking on your name in the author list.\n"
113
  )
114
  for paper in already_claimed[False]:
115
  url = f"https://huggingface.co/papers/{paper['id']}"
 
156
  )
157
  positive_arxiv_ids = gr.Textbox(
158
  placeholder="1910.01108",
159
+ label=(
160
+ "ArXiv ID for a paper for which you are an author, separate multiple IDs"
161
+ " with commas"
162
+ ),
163
  interactive=True,
164
  )
165
  btn = gr.Button("Get papers")