Skip to content
New issue

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

seq2seq章节的一个修改建议 #34

Open
DEROOCE opened this issue Feb 25, 2021 · 2 comments
Open

seq2seq章节的一个修改建议 #34

DEROOCE opened this issue Feb 25, 2021 · 2 comments

Comments

@DEROOCE
Copy link

DEROOCE commented Feb 25, 2021

在seq2seq章节中的编码器小节中,输⼊ xt 的特征向量 xt 和上个时间步的隐藏状态..., 建议将其修改为`输⼊数据x^t和上个时间步的隐藏状态,因为在编码器中每个隐藏层的输入是输入数据和上一步的隐藏状态,而不是输入数据的特征向量。

@timmmGZ
Copy link

timmmGZ commented Mar 2, 2021

在seq2seq章节中的编码器小节中,输⼊ xt 的特征向量 xt 和上个时间步的隐藏状态..., 建议将其修改为`输⼊数据x^t和上个时间步的隐藏状态,因为在编码器中每个隐藏层的输入是输入数据和上一步的隐藏状态,而不是输入数据的特征向量。

正解,不是输入数据的特征向量。每个隐藏层的输入=concat((输入数据,tanh(上一步的隐藏状态的输出)))

@DEROOCE
Copy link
Author

DEROOCE commented Mar 4, 2021

在seq2seq章节中的编码器小节中,输⼊ xt 的特征向量 xt 和上个时间步的隐藏状态..., 建议将其修改为`输⼊数据x^t和上个时间步的隐藏状态,因为在编码器中每个隐藏层的输入是输入数据和上一步的隐藏状态,而不是输入数据的特征向量。

正解,不是输入数据的特征向量。每个隐藏层的输入=concat((输入数据,tanh(上一步的隐藏状态的输出)))

或者,我猜测作者想表达的是" vectors of features ",这样的话,翻译成特征向量也可以理解。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants