Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def sepia(inp):
|
|
31 |
# シンプルなUIを作成
|
32 |
demo = gr.Interface(
|
33 |
fn=sepia,
|
34 |
-
inputs=gr.Image(shape=(256, 256)),
|
35 |
outputs="image"
|
36 |
).launch()
|
37 |
|
|
|
31 |
# シンプルなUIを作成
|
32 |
demo = gr.Interface(
|
33 |
fn=sepia,
|
34 |
+
inputs=gr.Image(shape=(256, 256, 3)),
|
35 |
outputs="image"
|
36 |
).launch()
|
37 |
|