dakkoong commited on
Commit
643f750
·
1 Parent(s): 1c112cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def classify_image(img):
33
 
34
  # Gradio UI를 생성합니다.
35
  iface = gr.Interface(fn=classify_image,
36
- inputs=gr.Image(shape=(800, 600)),
37
  examples=["cityoutdoor-1.jpg", "cityoutdoor-2.jpg", "cityoutdoor-3.jpg"],
38
  outputs="label", live=True)
39
 
 
33
 
34
  # Gradio UI를 생성합니다.
35
  iface = gr.Interface(fn=classify_image,
36
+ inputs="Image"),
37
  examples=["cityoutdoor-1.jpg", "cityoutdoor-2.jpg", "cityoutdoor-3.jpg"],
38
  outputs="label", live=True)
39