Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -208,6 +208,10 @@ if ("0" == "mycustom"):
|
|
208 |
x_train = train_data[[i for i in range(7)]].values
|
209 |
if ("0" != "mycustom"):
|
210 |
x_train = train_data[[i for i in range(len(myfields))]].values
|
|
|
|
|
|
|
|
|
211 |
y_train = features.iloc[start:end][[1]]
|
212 |
|
213 |
sequence_length = int(past / step)
|
|
|
208 |
x_train = train_data[[i for i in range(7)]].values
|
209 |
if ("0" != "mycustom"):
|
210 |
x_train = train_data[[i for i in range(len(myfields))]].values
|
211 |
+
|
212 |
+
st.write(start,end)
|
213 |
+
st.dataframe(features)
|
214 |
+
|
215 |
y_train = features.iloc[start:end][[1]]
|
216 |
|
217 |
sequence_length = int(past / step)
|