LSTMの隠れ層の出力の式ですが、E資格の問題文では
Python
1next_c = c * forget_gate + np.tanh(z) * input_gate 2next_h = next_c * output_gate
となっていますが、
![
なので、正しくはハイパボリックタンジェントの計算を入れた
Python
1next_c = c * forget_gate + np.tanh(z) * input_gate 2next_h = np.tanh(next_c) * output_gate
ではないでしょうか。
あなたの回答
tips
プレビュー