-
Notifications
You must be signed in to change notification settings - Fork 10.6k
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
练习4中加入正则化的反向传播函数 #101
Comments
您的邮件我已经收到,我会尽快处理的,谢谢!
|
哒啦哒哒哒,收到啦!ps.这里是HFer_杨少
|
您好! 已经收到您的邮件,我会尽快处理。祝身体健康,万事胜意!
|
这是来自QQ邮箱的假期自动回复邮件。你好,我,无法亲自回复你的邮件。我将在假期结束后,尽快给你回复。最近正在休假中
|
收到,谢谢!
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
隐藏层的误差项的计算代码有误,将
d2t = np.multiply((d3t, theta2), sigmoid_gradient(z2t))
改为
d2t = np.multiply((theta2.T * d3t.T).T, sigmoid_gradient(z2t))
The text was updated successfully, but these errors were encountered: