jeffreymjohnson commited on
Commit
3f8ce24
·
1 Parent(s): a3a8a41
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
2
 
3
  def classify(input_img):
4
- return input_img
 
5
 
6
  demo = gr.Interface(
7
  fn=classify,
 
1
  import gradio as gr
2
 
3
  def classify(input_img):
4
+ out_image = input_img
5
+ return out_image
6
 
7
  demo = gr.Interface(
8
  fn=classify,