Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -79,11 +79,11 @@ with gr.Blocks() as demo:
|
|
79 |
label="Input Data", interactive=1)
|
80 |
with gr.Column():
|
81 |
gr.Dataframe(row_count = (1, "fixed"), col_count=(1, "fixed"), label="Predictions", headers=["Congestion Level"])
|
82 |
-
|
83 |
-
demo.load(get_row, every=10)
|
84 |
|
85 |
with gr.Row():
|
86 |
btn_sub = gr.Button(value="Submit")
|
|
|
|
|
87 |
|
88 |
btn_sub.click(infer, inputs = inputs, outputs = outputs)
|
89 |
|
|
|
79 |
label="Input Data", interactive=1)
|
80 |
with gr.Column():
|
81 |
gr.Dataframe(row_count = (1, "fixed"), col_count=(1, "fixed"), label="Predictions", headers=["Congestion Level"])
|
|
|
|
|
82 |
|
83 |
with gr.Row():
|
84 |
btn_sub = gr.Button(value="Submit")
|
85 |
+
|
86 |
+
demo.load(get_row, every=10)
|
87 |
|
88 |
btn_sub.click(infer, inputs = inputs, outputs = outputs)
|
89 |
|