seawolf2357 commited on
Commit
fd7ec7d
ยท
verified ยท
1 Parent(s): f87b942

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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.Markdown("์ด๋ฏธ์ง€์—์„œ LaTeX ๋ฌธ์ž์—ด ์ถ”์ถœํ•˜๊ธฐ")
37
- with gr.Form():
38
- image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
39
  submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
40
  latex_output = gr.Textbox(label="์ถ”์ถœ๋œ LaTeX")
41
 
42
- image_input.change(fn=get_latex_from_image, inputs=image_input, outputs=latex_output)
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