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
您好,请问AMNet在论文中计算节点和滤波向量attention权重的时候,利用了如下公式: $$w_k^i = q^T \cdot tanh(W^Z {z_k^i}^T + W^X x_i)$$ 但是在代码实验中按照了以下公式: $$w_k^i = tanh(W^Z {z_k^i}^T)^T \cdot tanh(W^X x_i)$$ 因为这两种方式并不等价,所以想请问这个细节为什么和论文中不是对应的呢?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
您好,请问AMNet在论文中计算节点和滤波向量attention权重的时候,利用了如下公式:
$$w_k^i = q^T \cdot tanh(W^Z {z_k^i}^T + W^X x_i)$$
$$w_k^i = tanh(W^Z {z_k^i}^T)^T \cdot tanh(W^X x_i)$$
但是在代码实验中按照了以下公式:
因为这两种方式并不等价,所以想请问这个细节为什么和论文中不是对应的呢?
The text was updated successfully, but these errors were encountered: