Spaces:
Runtime error
Runtime error
Commit
·
73d3712
1
Parent(s):
f979b85
template 3
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
return
|
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=
|
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,
|