JustKiddo commited on
Commit
0bb8b0b
·
verified ·
1 Parent(s): cc1887c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -14,9 +14,7 @@ def sepia(input_img):
14
  sepia_img /= sepia_img.max()
15
  return sepia_img
16
 
17
- demo = gr.TabbedInterface([sepia_filter, generated_output], ["RGB Sepia Filter", "Handwritten to Text"])
18
-
19
- sepia_filter = gr.Interface(sepia, gr.Image(), "image")
20
 
21
  with gr.Blocks() as generated_output:
22
  gr.Markdown(
@@ -29,5 +27,7 @@ with gr.Blocks() as generated_output:
29
  inp.change(welcome, inp, out)
30
 
31
 
 
 
32
  if __name__ == "__main__":
33
- demo.launch()
 
14
  sepia_img /= sepia_img.max()
15
  return sepia_img
16
 
17
+ sepia_interface = gr.Interface(sepia, gr.Image(), "image")
 
 
18
 
19
  with gr.Blocks() as generated_output:
20
  gr.Markdown(
 
27
  inp.change(welcome, inp, out)
28
 
29
 
30
+ demoApp = gr.TabbedInterface([sepia_interface, generated_output], ["RGB Sepia Filter", "Handwritten to Text"])
31
+
32
  if __name__ == "__main__":
33
+ demoApp.launch()