ysharma's picture
ysharma HF Staff
Update app.py
b29dbe6 verified
raw
history blame contribute delete
304 Bytes
import gradio as gr
from gradio_pdf import PDF
from pdf2image import convert_from_path
with gr.Blocks(css="footer{display:none !important}") as demo:
gr.HTML("<h1><center>Dummy Research Paper: Title</center></h1>")
PDF(show_label=False, interactive=False, value="dummy paper.pdf")
demo.launch()