Yozhikoff commited on
Commit
0749c7f
Β·
1 Parent(s): 5055671

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,7 +55,7 @@ with gr.Blocks(title='Paper classifier') as demo:
55
  with gr.Row():
56
  with gr.Column():
57
  gr.Markdown('## Inputs')
58
- gr.Markdown('Please enter an arXiv link **OR** fill title and abstract manually')
59
  arxiv_link = gr.Textbox(label="Arxiv link")
60
 
61
  b1 = gr.Button("Parse Link")
@@ -70,7 +70,7 @@ with gr.Blocks(title='Paper classifier') as demo:
70
 
71
  with gr.Column():
72
  gr.Markdown('## Topics')
73
- gr.Markdown('')
74
  out = gr.Label(label="Topics")
75
  b2.click(classify_paper, inputs=[title, abstract], outputs=out)
76
 
 
55
  with gr.Row():
56
  with gr.Column():
57
  gr.Markdown('## Inputs')
58
+ gr.Markdown('#### Please enter an arXiv link **OR** fill title and abstract manually')
59
  arxiv_link = gr.Textbox(label="Arxiv link")
60
 
61
  b1 = gr.Button("Parse Link")
 
70
 
71
  with gr.Column():
72
  gr.Markdown('## Topics')
73
+ gr.Markdown('## ')
74
  out = gr.Label(label="Topics")
75
  b2.click(classify_paper, inputs=[title, abstract], outputs=out)
76