Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shihotan
/
pixAI
like
0
No application file
App
Files
Files
Community
main
pixAI
/
a
kuzneet
Create a
a9197c3
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
215 Bytes
git clone https:
//huggingface.co/spaces/PixArt-alpha/PixArt-alpha
import gradio
as
gr
def greet(name):
return
"Hello "
+ name +
"!!"
iface = gr.
Interface(
fn
=
greet
,
inputs
=
"text"
,
outputs
=
"text"
)
iface.launch
()