Spaces:
Runtime error
Runtime error
| 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) |