Spaces:
Running
Running
Circhastic
commited on
Commit
•
4331672
1
Parent(s):
507c880
v1.1 release debug
Browse files
app.py
CHANGED
@@ -134,7 +134,7 @@ def train_test(dataframe, n):
|
|
134 |
return (training_y, test_y, test_y_series, training_X, test_X, future_X)
|
135 |
|
136 |
@st.cache_data
|
137 |
-
def
|
138 |
trainTestModel = auto_arima(X = Exo, y = trainY, start_p=1, start_q=1,
|
139 |
test='adf',min_p=1,min_q=1,
|
140 |
max_p=3, max_q=3, m=12,
|
|
|
134 |
return (training_y, test_y, test_y_series, training_X, test_X, future_X)
|
135 |
|
136 |
@st.cache_data
|
137 |
+
def test_fitting(dataframe, Exo, trainY):
|
138 |
trainTestModel = auto_arima(X = Exo, y = trainY, start_p=1, start_q=1,
|
139 |
test='adf',min_p=1,min_q=1,
|
140 |
max_p=3, max_q=3, m=12,
|