Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -33,13 +33,12 @@ def get_latex_from_image(image):
|
|
33 |
# Gradio ์ฑ ์ ์
|
34 |
def build_gradio_app():
|
35 |
with gr.Blocks() as app:
|
36 |
-
gr.
|
37 |
-
|
38 |
-
image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง ์
๋ก๋")
|
39 |
submit_button = gr.Button("๋ณํํ๊ธฐ")
|
40 |
latex_output = gr.Textbox(label="์ถ์ถ๋ LaTeX")
|
41 |
|
42 |
-
|
43 |
|
44 |
return app
|
45 |
|
|
|
33 |
# Gradio ์ฑ ์ ์
|
34 |
def build_gradio_app():
|
35 |
with gr.Blocks() as app:
|
36 |
+
with gr.Row():
|
37 |
+
image_input = gr.Image(type="file", label="์ด๋ฏธ์ง ์
๋ก๋")
|
|
|
38 |
submit_button = gr.Button("๋ณํํ๊ธฐ")
|
39 |
latex_output = gr.Textbox(label="์ถ์ถ๋ LaTeX")
|
40 |
|
41 |
+
submit_button.click(fn=get_latex_from_image, inputs=image_input, outputs=latex_output)
|
42 |
|
43 |
return app
|
44 |
|