File size: 207 Bytes
6d77a6c
 
a3a8a41
3f8ce24
 
6d77a6c
a3a8a41
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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()