Spaces:
Sleeping
Sleeping
Small feedback ๐
#1
by
merve
HF staff
- opened
@EduardoPacheco
great demo! ๐
I think it would be easier on the yes if the plots were colorful, WDYT?
Also I feel like it would be better to have event listeners to see the direct effect of each parameter on decision boundaries. See an example below:
import gradio as gr
def welcome(name):
return f"Welcome to Gradio, {name}!"
with gr.Blocks() as demo:
gr.Markdown(
"""
# Hello World!
Start typing below to see the output.
""")
inp = gr.Textbox(placeholder="What is your name?")
out = gr.Textbox()
inp.change(welcome, inp, out)
demo.launch()
Hey, @merve ! Thanks for suggesting the event listener approach I wasn't aware of this possibility. I've already done the modifications :D
EduardoPacheco
changed discussion status to
closed