Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rdezwart
/
FoodIdentifier
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
26fd683
FoodIdentifier
/
app.py
rdezwart
Create app.py
5756dad
11 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
demo = gr.Interface(
fn=greet,
inputs=[
"text"
],
outputs=[
"text"
]
)
if
__name__ ==
"__main__"
:
demo.launch()