Spaces:
Running
Running
GoBoKyung
commited on
Commit
·
d291711
1
Parent(s):
4170a88
city
Browse files
app.py
CHANGED
@@ -102,8 +102,8 @@ def sepia(input_img):
|
|
102 |
return fig
|
103 |
|
104 |
demo = gr.Interface(fn=sepia,
|
105 |
-
inputs=gr.
|
106 |
-
outputs=
|
107 |
examples=["img_1.jpg", "img_2.jpeg", "img_3.jpg", "img_4.jpg", "img_5.png"],
|
108 |
allow_flagging='never')
|
109 |
|
|
|
102 |
return fig
|
103 |
|
104 |
demo = gr.Interface(fn=sepia,
|
105 |
+
inputs=gr.Textbox(label="Image Path", type="text")
|
106 |
+
outputs=gr.Image(),
|
107 |
examples=["img_1.jpg", "img_2.jpeg", "img_3.jpg", "img_4.jpg", "img_5.png"],
|
108 |
allow_flagging='never')
|
109 |
|