Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -43,28 +43,26 @@ def get_latex_from_image_all_formats(image):
|
|
43 |
|
44 |
|
45 |
def build_gradio_app(css=css):
|
46 |
-
|
47 |
-
|
48 |
-
with demo:
|
49 |
gr.Markdown("# ArXivGPT OCR LaTeX")
|
50 |
gr.Markdown("This comprehensive solution...")
|
51 |
|
52 |
image_input = gr.Image(type="pil", label="이미지 업로드")
|
53 |
-
submit_button = gr.Button("변환하기")
|
54 |
|
55 |
-
|
56 |
-
output_text = gr.Textbox(label="결과")
|
57 |
-
examples = gr.Examples(examples=[["ko.png"], ["en.png"], ["hand.jpg"]], inputs=image_input, fn=process_and_output, outputs=output_text)
|
58 |
-
|
59 |
-
latex_iframe = gr.HTML(value='<iframe src="https://www.mathjax.org/#demo" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
|
60 |
-
|
61 |
def process_and_output(image):
|
|
|
62 |
latex_result = get_latex_from_image_all_formats(image)
|
63 |
text_result = latex_result.get("text", "No result")
|
64 |
return text_result
|
65 |
|
66 |
-
submit_button
|
|
|
|
|
|
|
|
|
|
|
67 |
|
|
|
68 |
|
69 |
return demo
|
70 |
|
|
|
43 |
|
44 |
|
45 |
def build_gradio_app(css=css):
|
46 |
+
with gr.Blocks(css=css) as demo:
|
|
|
|
|
47 |
gr.Markdown("# ArXivGPT OCR LaTeX")
|
48 |
gr.Markdown("This comprehensive solution...")
|
49 |
|
50 |
image_input = gr.Image(type="pil", label="이미지 업로드")
|
|
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
def process_and_output(image):
|
53 |
+
# 이미지 처리 및 결과 반환 로직
|
54 |
latex_result = get_latex_from_image_all_formats(image)
|
55 |
text_result = latex_result.get("text", "No result")
|
56 |
return text_result
|
57 |
|
58 |
+
submit_button = gr.Button("변환하기")
|
59 |
+
outputs = gr.Textbox(label="결과")
|
60 |
+
|
61 |
+
submit_button.click(fn=process_and_output, inputs=[image_input], outputs=[outputs])
|
62 |
+
|
63 |
+
examples = gr.Examples(examples=[["ko.png"], ["en.png"], ["hand.jpg"]], inputs=[image_input], fn=process_and_output, outputs=[outputs])
|
64 |
|
65 |
+
latex_iframe = gr.HTML(value='<iframe src="https://www.mathjax.org/#demo" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
|
66 |
|
67 |
return demo
|
68 |
|