100stacks
feat: hot dog or not model classification
9415477 unverified
raw
history blame
172 Bytes
import gradio as gr
def greet(name):
return "Hello from Hugging Face Spaces " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()