Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Vipitis
/
ShaderEval
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9d3e407
ShaderEval
/
app.py
Vipitis
initial commit
9d3e407
about 2 years ago
raw
Copy download link
history
blame
Safe
211 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!\n This space hosts the ShaderEval Suite. more to follow soon."
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()