Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,9 +17,10 @@ def sepia(input_img):
|
|
17 |
sepia_interface = gr.Interface(sepia, gr.Image(), "image")
|
18 |
|
19 |
## https://www.gradio.app/docs/gradio/blocks
|
|
|
20 |
generated_output = gr.Interface(None,
|
21 |
-
|
22 |
-
|
23 |
|
24 |
#with gr.Blocks() as generated_output:
|
25 |
# inp = gr.Interface(sepia, gr.Image(), "image")
|
|
|
17 |
sepia_interface = gr.Interface(sepia, gr.Image(), "image")
|
18 |
|
19 |
## https://www.gradio.app/docs/gradio/blocks
|
20 |
+
## required positional arguments: 'inputs' and 'outputs'
|
21 |
generated_output = gr.Interface(None,
|
22 |
+
inputs = sepia_interface,
|
23 |
+
outputs = gr.Textbox())
|
24 |
|
25 |
#with gr.Blocks() as generated_output:
|
26 |
# inp = gr.Interface(sepia, gr.Image(), "image")
|