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
Dear authors, I have three questions as follows:
Firstly,
seq2seq/seq2seq/cells.py
Line 87 in c020ccf
noted: output_shape=(input_dim + hidden_dim,) should it be ->-> output_shape=(input_length, input_dim + hidden_dim)???
output_shape=(input_dim + hidden_dim,)
output_shape=(input_length, input_dim + hidden_dim)
Additionally, the same issue with #219 ,
instead of this:
Line 85 in c020ccf
shouldn't it be this (input_dim -> hidden_dim):
C = Lambda(lambda x: K.repeat(x, input_length), output_shape=(input_length, hidden_dim))(c_tm1)
Because c_tm1 has dimensionality of hidden_dim
Finally,
Line 89 in c020ccf
line 89: alpha = W3(_xC) Here, did "Dense" play the same role as "TimedistributedDense" in keras? ?
alpha = W3(_xC)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dear authors, I have three questions as follows:
Firstly,
seq2seq/seq2seq/cells.py
Line 87 in c020ccf
noted:
output_shape=(input_dim + hidden_dim,)
should it be ->->output_shape=(input_length, input_dim + hidden_dim)
???Additionally, the same issue with #219 ,
instead of this:
seq2seq/seq2seq/cells.py
Line 85 in c020ccf
shouldn't it be this (input_dim -> hidden_dim):
C = Lambda(lambda x: K.repeat(x, input_length), output_shape=(input_length, hidden_dim))(c_tm1)
Because c_tm1 has dimensionality of hidden_dim
Finally,
seq2seq/seq2seq/cells.py
Line 89 in c020ccf
line 89:
alpha = W3(_xC)
Here, did "Dense" play the same role as "TimedistributedDense" in keras? ?The text was updated successfully, but these errors were encountered: