Spaces:
Paused
Paused
File size: 226 Bytes
c684a3f 051bdea 59db64f 17c5e5e c684a3f 4737df1 1f8550c c684a3f 05b4c0d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
""" App
"""
import gradio as gr
import time
import os
import spaces
@spaces.GPU
def greet(name):
return "Hello there {}".format(name)
# comment
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|