ValueError: Error when checking input: expected gru_5_input to have shape (None, None, 10) but got array with shape (1, 4, 1)
Clash Royale CLAN TAG #URR8PPP ValueError: Error when checking input: expected gru_5_input to have shape (None, None, 10) but got array with shape (1, 4, 1) I am trying to make hourly predictions using a recurrent neural network using TensorFlow and Keras in Python.I have assigned my inputs of the neural network to be (None, None, 5) shown in my . However, I am getting the errorː ValueError: Error when checking input: expected gru_3_input to have shape (None, None, 10) but got array with shape (1, 4, 1) My MVCE code isː ValueError: Error when checking input: expected gru_3_input to have shape (None, None, 10) but got array with shape (1, 4, 1) %matplotlib inline #!pip uninstall keras #!pip install keras==2.1.2 import tensorflow as tf import pandas as pd from pandas import DataFrame import math import numpy from sklearn.preprocessing import MinMaxScaler from keras.models import Sequential import datetime from keras.layers import Input, Dense, GRU, Embedding from keras.optimizers import...