Spaces:
Runtime error
Runtime error
Omar Sanseviero commited on
Commit ·
bc277d6
1
Parent(s): 186c337
Upload app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def predict(input):
|
| 4 |
+
return input
|
| 5 |
+
|
| 6 |
+
examples = ['./example/HF_sticker.jpeg', './example/HFT.png']
|
| 7 |
+
|
| 8 |
+
gr.Interface(predict, gr.inputs.Image(), gr.outputs.Image(), examples=examples).launch(debug=True)
|