Spaces:
Sleeping
Sleeping
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() |