Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fizban
/
simiandb
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cdee2f2
simiandb
/
app.py
fizban99
First version
e468f5a
about 2 years ago
raw
Copy download link
history
blame
Wrap lines
219 Bytes
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 22 19:59:54 2023
"""
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()