JustKiddo commited on
Commit
16e3169
·
verified ·
1 Parent(s): 21087b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,10 +29,10 @@ with gr.Blocks() as generated_output:
29
  with gr.Column():
30
  gr.Interface(sepia, gr.Image(), "image")
31
  with gr.Row():
32
- #output_text = gr.Textbox(sepia(input_img), label="Processed RGB Values")
33
  gr.Interface(sepia,
34
  inputs = input_img,
35
- outputs = gr.Textbox(sepia_img, label="Processed RGB Values"))
36
 
37
  #with gr.Blocks() as generated_output:
38
  # inp = gr.Interface(sepia, gr.Image(), "image")
 
29
  with gr.Column():
30
  gr.Interface(sepia, gr.Image(), "image")
31
  with gr.Row():
32
+ output_sepia = gr.Textbox(label="Processed RGB Values")
33
  gr.Interface(sepia,
34
  inputs = input_img,
35
+ outputs = [sepia_img, output_sepia]
36
 
37
  #with gr.Blocks() as generated_output:
38
  # inp = gr.Interface(sepia, gr.Image(), "image")