Spaces:
Runtime error
Runtime error
File size: 218 Bytes
350b83e |
1 2 3 4 5 6 7 8 |
import gradio as gr
def predict(input):
return input
examples = ['./example/HF_sticker.jpeg', './example/HFT.png']
gr.Interface(predict, gr.inputs.Image(), gr.outputs.Image(), examples=examples).launch(debug=True) |