6d77a6c a3a8a41 6d77a6c a3a8a41
1
2
3
4
5
6
7
8
9
10
11
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()