jeffreymjohnson's picture
dont know
3f8ce24
raw
history blame
207 Bytes
import gradio as gr
def classify(input_img):
out_image = input_img
return out_image
demo = gr.Interface(
fn=classify,
inputs=gr.Image(shape=(200,200)),
outputs="image")
demo.launch()