Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jgwill
/
nalit-x2409a-gradio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6528a39
nalit-x2409a-gradio
/
app.py
jgwill
add:app
f01be20
about 1 year ago
raw
Copy download link
history
blame
200 Bytes
import
gradio
as
gr
from
jgtutils.jgtpov
import
get_higher_tf_by_level
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()