File size: 141 Bytes
bc393f7
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def blur(img):
    return img

iface = gr.Interface(fn=blur, inputs=gr.Image(type='pil'), outputs="text")
iface.launch()