hysts HF Staff commited on
Commit
d83a369
·
1 Parent(s): 0ed8739

Change layout

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -16,6 +16,12 @@ def main():
16
  with gr.Blocks(css='style.css') as demo:
17
  gr.Markdown(DESCRIPTION)
18
 
 
 
 
 
 
 
19
  filter_names = gr.CheckboxGroup(choices=[
20
  'Supp',
21
  'arXiv',
@@ -25,12 +31,6 @@ def main():
25
  'HF Dataset',
26
  ],
27
  label='With')
28
- search_box = gr.Textbox(
29
- label='Keywords',
30
- placeholder=
31
- 'You can search for titles with regular expressions. e.g. (?<!sur)face'
32
- )
33
- case_sensitive = gr.Checkbox(label='Case Sensitive')
34
  search_button = gr.Button('Search')
35
 
36
  number_of_papers = gr.Textbox(label='Number of Papers Found')
 
16
  with gr.Blocks(css='style.css') as demo:
17
  gr.Markdown(DESCRIPTION)
18
 
19
+ search_box = gr.Textbox(
20
+ label='Keywords',
21
+ placeholder=
22
+ 'You can search for titles with regular expressions. e.g. (?<!sur)face'
23
+ )
24
+ case_sensitive = gr.Checkbox(label='Case Sensitive')
25
  filter_names = gr.CheckboxGroup(choices=[
26
  'Supp',
27
  'arXiv',
 
31
  'HF Dataset',
32
  ],
33
  label='With')
 
 
 
 
 
 
34
  search_button = gr.Button('Search')
35
 
36
  number_of_papers = gr.Textbox(label='Number of Papers Found')