JustKiddo commited on
Commit
ba34741
·
verified ·
1 Parent(s): a77c349

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -29,13 +29,12 @@ sepia_interface = gr.Interface(sepia, gr.Image(), "image")
29
 
30
  with gr.Blocks() as generated_output:
31
  with gr.Column():
 
 
32
  gr.Interface(fn=sepia,
33
  inputs=gr.Image(),
34
- outputs="image",
35
  show_progress="minimal")
36
- with gr.Row():
37
- sepia_values_text=gr.Textbox(label="Sepia Values")
38
- gr.Interface(sepia, outputs = "sepia_values_text")
39
 
40
  #with gr.Blocks() as generated_output:
41
  # inp = gr.Interface(sepia, gr.Image(), "image")
 
29
 
30
  with gr.Blocks() as generated_output:
31
  with gr.Column():
32
+ sepia_values_text=gr.Textbox(label="Sepia Values")
33
+ output_img = gr.Image(label="Output Image")
34
  gr.Interface(fn=sepia,
35
  inputs=gr.Image(),
36
+ outputs=["output_img", "sepia_values_text"],
37
  show_progress="minimal")
 
 
 
38
 
39
  #with gr.Blocks() as generated_output:
40
  # inp = gr.Interface(sepia, gr.Image(), "image")