JustKiddo commited on
Commit
778806f
·
verified ·
1 Parent(s): b7b5d68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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
- input = sepia_interface,
22
- output = gr.Textbox())
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")