NicBT
Results
1
comments of
NicBT
i found the problem and the fix: In `predicted_price_tomorrow = np.squeeze(y_normaliser.inverse_transform(model.predict([[ohlcv], [ind]])))`, `model.predict()` is expecting (in this case) a list of arrays. Instead, we are currently passing in a list...