Small feedback ๐Ÿ’œ

#1
by merve HF staff - opened
scikit-learn org

@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()
scikit-learn org

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

Sign up or log in to comment