5e8395e 1ed5ce5 5e8395e 159aee9
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr def identity_function(input_image): return input_image iface = gr.Interface( fn=identity_function, inputs=gr.inputs.Image(), outputs=gr.outputs.Image() ) iface.launch(share=True)