Spaces:
Running
Running
File size: 1,925 Bytes
750ddf0 e5832e1 76fa02e 750ddf0 e5832e1 76fa02e e5832e1 76fa02e 750ddf0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
#!/usr/bin/env python
from __future__ import annotations
import gradio as gr
from papers import PaperList
DESCRIPTION = '# CVPR 2022 papers'
FOOTER = '<img id="visitor-badge" alt="visitor badge" src="https://visitor-badge.glitch.me/badge?page_id=hysts.cvpr2022_papers" />'
def main():
paper_list = PaperList()
html_text = paper_list.to_html(paper_list.table)
with gr.Blocks(css='style.css') as demo:
gr.Markdown(DESCRIPTION)
search_box = gr.Textbox(
label='Keywords',
placeholder='You can search for titles with regular expressions')
case_sensitive = gr.Checkbox(label='Case Sensitive')
search_button = gr.Button('Search')
names_with_link = gr.CheckboxGroup(choices=[
'Supp',
'arXiv',
'GitHub',
'HF Space',
],
label='With')
table = gr.HTML(html_text, show_label=False)
gr.Markdown(FOOTER)
demo.load(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=table)
search_button.click(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=table)
names_with_link.change(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=table)
demo.launch(enable_queue=True, share=False)
if __name__ == '__main__':
main()
|