jeffreymjohnson's picture
updated to image widget
a3a8a41
raw
history blame
181 Bytes
import gradio as gr
def classify(input_img):
return input_img
demo = gr.Interface(
fn=classify,
inputs=gr.Image(shape=(200,200)),
outputs="image")
demo.launch()