Update app.py
Browse files
app.py
CHANGED
|
@@ -33,7 +33,7 @@ def classify_image(img):
|
|
| 33 |
|
| 34 |
# Gradio UI를 생성합니다.
|
| 35 |
iface = gr.Interface(fn=classify_image,
|
| 36 |
-
inputs=
|
| 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 |
|