Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 142 Bytes
48312b3 |
1 2 3 4 5 6 7 8 |
import gradio as gr
def identity(image):
return image
iface = gr.Interface(fn=identity, inputs="image", outputs="image")
iface.launch()
|