ShaderEval / app.py
Vipitis's picture
initial commit
9d3e407
raw
history blame
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()