Created
April 20, 2021 20:45
-
-
Save moezali1/a1d83fb61e0ce14adcf4dffa784b1643 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gradio as gr | |
model = gr.inputs.Dropdown(list(compare_model_results['Model']), label="Model") | |
sepal_length = gr.inputs.Slider(minimum=1, maximum=10, default=data['sepal_length'].mean(), label = 'sepal_length') | |
sepal_width = gr.inputs.Slider(minimum=1, maximum=10, default=data['sepal_width'].mean(), label = 'sepal_width') | |
petal_length = gr.inputs.Slider(minimum=1, maximum=10, default=data['petal_length'].mean(), label = 'petal_length') | |
petal_width = gr.inputs.Slider(minimum=1, maximum=10, default=data['petal_width'].mean(), label = 'petal_width') | |
gr.Interface(predict, [model,sepal_length,sepal_width,petal_length,petal_width], "label", live=True).launch() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment