Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HF-Quantization
/
TorchAO
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ce0c4f3
TorchAO
/
app.py
MekkCyber
first_update
ce0c4f3
5 months ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()