Spaces:
Runtime error
Runtime error
Change layout
Browse files
app.py
CHANGED
|
@@ -15,13 +15,7 @@ def main():
|
|
| 15 |
|
| 16 |
with gr.Blocks(css='style.css') as demo:
|
| 17 |
gr.Markdown(DESCRIPTION)
|
| 18 |
-
|
| 19 |
-
label='Keywords',
|
| 20 |
-
placeholder=
|
| 21 |
-
'You can search for titles with regular expressions. e.g. (?<!sur)face'
|
| 22 |
-
)
|
| 23 |
-
case_sensitive = gr.Checkbox(label='Case Sensitive')
|
| 24 |
-
search_button = gr.Button('Search')
|
| 25 |
names_with_link = gr.CheckboxGroup(choices=[
|
| 26 |
'Supp',
|
| 27 |
'arXiv',
|
|
@@ -29,6 +23,13 @@ def main():
|
|
| 29 |
'HF Space',
|
| 30 |
],
|
| 31 |
label='With')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
number_of_papers = gr.Textbox(label='Number of found papers')
|
| 34 |
table = gr.HTML(show_label=False)
|
|
|
|
| 15 |
|
| 16 |
with gr.Blocks(css='style.css') as demo:
|
| 17 |
gr.Markdown(DESCRIPTION)
|
| 18 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
names_with_link = gr.CheckboxGroup(choices=[
|
| 20 |
'Supp',
|
| 21 |
'arXiv',
|
|
|
|
| 23 |
'HF Space',
|
| 24 |
],
|
| 25 |
label='With')
|
| 26 |
+
search_box = gr.Textbox(
|
| 27 |
+
label='Keywords',
|
| 28 |
+
placeholder=
|
| 29 |
+
'You can search for titles with regular expressions. e.g. (?<!sur)face'
|
| 30 |
+
)
|
| 31 |
+
case_sensitive = gr.Checkbox(label='Case Sensitive')
|
| 32 |
+
search_button = gr.Button('Search')
|
| 33 |
|
| 34 |
number_of_papers = gr.Textbox(label='Number of found papers')
|
| 35 |
table = gr.HTML(show_label=False)
|