CVPR2022_papers / app.py
hysts's picture
hysts HF staff
Rename file
2d7951c
raw
history blame
2.3 kB
#!/usr/bin/env python
from __future__ import annotations
import gradio as gr
from paper_list 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()
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. e.g. (?<!sur)face'
)
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')
number_of_papers = gr.Textbox(label='Number of found papers')
table = gr.HTML(show_label=False)
gr.Markdown(FOOTER)
demo.load(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=[
number_of_papers,
table,
])
search_button.click(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=[
number_of_papers,
table,
])
names_with_link.change(paper_list.render,
inputs=[
search_box,
case_sensitive,
names_with_link,
],
outputs=[
number_of_papers,
table,
])
demo.launch(enable_queue=True, share=False)
if __name__ == '__main__':
main()