Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: gradio TypeError #217

Open
wants to merge 1 commit into
base: notebook-demo
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions notebooks/nougat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@
"# Gradio Blocks\n",
"with gr.Blocks(css =css) as demo:\n",
" with gr.Row():\n",
" mkd = gr.Markdown('<h4><center>Upload a PDF</center></h4>',scale=1)\n",
" mkd = gr.Markdown('<h4><center><i>OR</i></center></h4>',scale=1)\n",
" mkd = gr.Markdown('<h4><center>Provide a PDF link</center></h4>',scale=1)\n",
" mkd = gr.Markdown('<h4><center>Upload a PDF</center></h4>')\n",
" mkd = gr.Markdown('<h4><center><i>OR</i></center></h4>')\n",
" mkd = gr.Markdown('<h4><center>Provide a PDF link</center></h4>')\n",
"\n",
" with gr.Row(equal_height=True):\n",
" pdf_file = gr.File(label='PDF📃', file_count='single', scale=1)\n",
Expand All @@ -265,7 +265,7 @@
" clr = gr.Button('Clear🚿')\n",
"\n",
" output_headline = gr.Markdown(\"<h3><center>PDF converted into markup language through Nougat-OCR👇:</center></h3>\")\n",
" parsed_output = gr.Markdown(r'OCR Output📃🔤',elem_id='mkd', scale=1, latex_delimiters=[{ \"left\": r\"\\(\", \"right\": r\"\\)\", \"display\": False },{ \"left\": r\"\\[\", \"right\": r\"\\]\", \"display\": True }])\n",
" parsed_output = gr.Markdown(r'OCR Output📃🔤',elem_id='mkd', latex_delimiters=[{ \"left\": r\"\\(\", \"right\": r\"\\)\", \"display\": False },{ \"left\": r\"\\[\", \"right\": r\"\\]\", \"display\": True }])\n",
"\n",
" btn.click(paper_read, [pdf_file, pdf_link], parsed_output )\n",
" clr.click(lambda : (gr.update(value=None),\n",
Expand Down