paresh95
PS|Add image interface
1ed5ce5
raw
history blame
217 Bytes
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)