Continuation from previous question: Tensorflow - TypeError: 'int' object is not iterable
My training data is a list of lists each comprised of 1000 floats. F
This should do the trick:
x_train = np.asarray(x_train).astype(np.float32) y_train = np.asarray(y_train).astype(np.float32)