atsantiago commited on
Commit
73d3712
·
1 Parent(s): f979b85

template 3

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
  gr_input = [
7
  gr.inputs.Image(type='pil', label="Original Image")
@@ -12,7 +12,7 @@ gr_output = [
12
  ]
13
 
14
  iface = gr.Interface(
15
- fn=greet,
16
  title="Space Title Here",
17
  description = "Description Here",
18
  inputs = gr_input,
 
1
  import gradio as gr
2
 
3
+ def detr(im):
4
+ return im
5
 
6
  gr_input = [
7
  gr.inputs.Image(type='pil', label="Original Image")
 
12
  ]
13
 
14
  iface = gr.Interface(
15
+ fn=detr,
16
  title="Space Title Here",
17
  description = "Description Here",
18
  inputs = gr_input,