Spaces:
Sleeping
Sleeping
File size: 139 Bytes
fda0e73 | 1 2 3 4 5 6 7 8 9 | import spaces
@spaces.GPU
def fake_func():
pass
import gradio as gr
demo = gr.Interface(fn=fake_func, inputs="text", outputs="text")
|