Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,10 @@ import pandas as pd
|
|
11 |
title = "Stoclholm Highway E4 Real Time Traffic Prediction"
|
12 |
description = "Stockholm E4 (59°23'44.7"" N 17°59'00.4""E) highway real time traffic prediction, updated in every hour"
|
13 |
|
14 |
-
inputs = [gr.Dataframe(row_count = (1, "fixed"), col_count=(7,"fixed"),
|
|
|
|
|
|
|
15 |
|
16 |
outputs = [gr.Dataframe(row_count = (1, "fixed"), col_count=(1, "fixed"), label="Predictions", headers=["Congestion Level"])]
|
17 |
|
|
|
11 |
title = "Stoclholm Highway E4 Real Time Traffic Prediction"
|
12 |
description = "Stockholm E4 (59°23'44.7"" N 17°59'00.4""E) highway real time traffic prediction, updated in every hour"
|
13 |
|
14 |
+
inputs = [gr.Dataframe(row_count = (1, "fixed"), col_count=(7,"fixed"),
|
15 |
+
headers=["referenceTime", "t", "ws", "prec1h", "fesn1h", "vis", "confidence"],
|
16 |
+
datatype=["timestamp", "float", "float", "float", "float", "float"],
|
17 |
+
label="Input Data", interactive=1)]
|
18 |
|
19 |
outputs = [gr.Dataframe(row_count = (1, "fixed"), col_count=(1, "fixed"), label="Predictions", headers=["Congestion Level"])]
|
20 |
|