Capitalize default value
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ with gr.Blocks() as demo:
|
|
89 |
with gr.Row():
|
90 |
plot = gr.Plot()
|
91 |
with gr.Column():
|
92 |
-
input_data = gr.Dropdown(choices=feature_names, label="Feature", value="
|
93 |
coef = gr.Textbox(label="Coefficients")
|
94 |
mse = gr.Textbox(label="Mean Squared Error (MSE)")
|
95 |
r2 = gr.Textbox(label="R2 score")
|
|
|
89 |
with gr.Row():
|
90 |
plot = gr.Plot()
|
91 |
with gr.Column():
|
92 |
+
input_data = gr.Dropdown(choices=feature_names, label="Feature", value="Body-Mass Index")
|
93 |
coef = gr.Textbox(label="Coefficients")
|
94 |
mse = gr.Textbox(label="Mean Squared Error (MSE)")
|
95 |
r2 = gr.Textbox(label="R2 score")
|