Spaces:
Runtime error
Runtime error
File size: 203 Bytes
71402dd |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
import torch
print(f'{torch.cuda.is_available()=}')
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|