Spaces:
Runtime error
Runtime error
Update
Browse files- app.py +2 -2
- paper_list.py +1 -1
app.py
CHANGED
|
@@ -17,7 +17,7 @@ def main():
|
|
| 17 |
gr.Markdown(DESCRIPTION)
|
| 18 |
|
| 19 |
search_box = gr.Textbox(
|
| 20 |
-
label='
|
| 21 |
placeholder=
|
| 22 |
'You can search for titles with regular expressions. e.g. (?<!sur)face'
|
| 23 |
)
|
|
@@ -30,7 +30,7 @@ def main():
|
|
| 30 |
'HF Model',
|
| 31 |
'HF Dataset',
|
| 32 |
],
|
| 33 |
-
label='
|
| 34 |
search_button = gr.Button('Search')
|
| 35 |
|
| 36 |
number_of_papers = gr.Textbox(label='Number of Papers Found')
|
|
|
|
| 17 |
gr.Markdown(DESCRIPTION)
|
| 18 |
|
| 19 |
search_box = gr.Textbox(
|
| 20 |
+
label='Search Title',
|
| 21 |
placeholder=
|
| 22 |
'You can search for titles with regular expressions. e.g. (?<!sur)face'
|
| 23 |
)
|
|
|
|
| 30 |
'HF Model',
|
| 31 |
'HF Dataset',
|
| 32 |
],
|
| 33 |
+
label='Filter')
|
| 34 |
search_button = gr.Button('Search')
|
| 35 |
|
| 36 |
number_of_papers = gr.Textbox(label='Number of Papers Found')
|
paper_list.py
CHANGED
|
@@ -10,7 +10,7 @@ class PaperList:
|
|
| 10 |
|
| 11 |
self.table_header = '''
|
| 12 |
<tr>
|
| 13 |
-
<td width="50%">Paper</td>
|
| 14 |
<td width="22%">Authors</td>
|
| 15 |
<td width="4%">pdf</td>
|
| 16 |
<td width="4%">Supp</td>
|
|
|
|
| 10 |
|
| 11 |
self.table_header = '''
|
| 12 |
<tr>
|
| 13 |
+
<td width="50%">Paper Title</td>
|
| 14 |
<td width="22%">Authors</td>
|
| 15 |
<td width="4%">pdf</td>
|
| 16 |
<td width="4%">Supp</td>
|