Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ def forecast():
|
|
24 |
0.21383452, -1.0216134 , 0.40277851, -0.34577169, -0.36832646,
|
25 |
-0.7210296 , 0 ]
|
26 |
|
27 |
-
res = model.predict(np.asarray(x).reshape(1,
|
28 |
|
29 |
return res
|
30 |
|
|
|
24 |
0.21383452, -1.0216134 , 0.40277851, -0.34577169, -0.36832646,
|
25 |
-0.7210296 , 0 ]
|
26 |
|
27 |
+
res = model.predict(np.asarray(x).reshape(-1, 1))
|
28 |
|
29 |
return res
|
30 |
|