While running a sentdex tutorial script of a cryptocurrency RNN, link here
YouTube Tutorial: Cryptocurrency-predicting RNN Model,
but have encountered an err
may be it will help someone. First check your data type if it is numpy array & possibly ur algo required a DF.
print(X.shape, X.dtype) print(y.shape, y.dtype)
convert your numpy array into Pandas DF
train_x = pd.DataFrame(train_x) train_y = pd.DataFrame(train_y)