We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. I have a question about dimension of input.
In case
mem_cell_ct = 2 x_dim = 1
Biases are not considered
Input of first cell must be: [x_value, 0] Input of seconds cell: [cell_1_output, 0]
But in your case: Input of first cell is: [x_value, 0, 0] Input of seconds cell: [x_value, cell_1_output, 0]
Is it correct that cells in hidden layers get actual input?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello. I have a question about dimension of input.
In case
Biases are not considered
Input of first cell must be: [x_value, 0]
Input of seconds cell: [cell_1_output, 0]
But in your case:
Input of first cell is: [x_value, 0, 0]
Input of seconds cell: [x_value, cell_1_output, 0]
Is it correct that cells in hidden layers get actual input?
The text was updated successfully, but these errors were encountered: