Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. X_train_reshaped = X_train.reshape(690,1100,1)
  2.  
  3. model.add(Conv1D(filters=20, kernel_size=15, strides=10, activation='relu', input_shape=(1100,1)))
  4.  
  5. ValueError: Error when checking model target: the list of Numpy arrays that you are passing to your model is not the size the model expected.
  6. Expected to see 1 array(s), but instead got the following list of 690 arrays: [7.2149954, 11.376397, 0.7409978, 0.18419814, ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement