chris-rannou's picture
chris-rannou HF Staff
Update app.py
45b93a0 verified
raw
history blame
253 Bytes
""" App
"""
import gradio as gr
import time
import os
import torch
import spaces
1/0
@spaces.GPU
def greet(name):
return "Hello there {}".format(name)
# comment updated 2
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()