Update app.py
Browse files
app.py
CHANGED
@@ -43,8 +43,8 @@ with gr.Blocks() as demo:
|
|
43 |
btn = gr.Button(value="Submit")
|
44 |
|
45 |
|
46 |
-
with gr.Row():
|
47 |
-
with gr.Column(scale=
|
48 |
plot = gr.Plot(label="KNeighborsRegressor Plot")
|
49 |
with gr.Column(scale=1):
|
50 |
num = gr.Textbox(label="Test Accuracy")
|
|
|
43 |
btn = gr.Button(value="Submit")
|
44 |
|
45 |
|
46 |
+
with gr.Row().style(equal_height=True):
|
47 |
+
with gr.Column(scale=2):
|
48 |
plot = gr.Plot(label="KNeighborsRegressor Plot")
|
49 |
with gr.Column(scale=1):
|
50 |
num = gr.Textbox(label="Test Accuracy")
|