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

练习4中加入正则化的反向传播函数 #101

Open
royalknight3341 opened this issue Aug 31, 2022 · 5 comments
Open

练习4中加入正则化的反向传播函数 #101

royalknight3341 opened this issue Aug 31, 2022 · 5 comments

Comments

@royalknight3341
Copy link

隐藏层的误差项的计算代码有误,将
d2t = np.multiply((d3t, theta2), sigmoid_gradient(z2t))
改为
d2t = np.multiply((theta2.T * d3t.T).T, sigmoid_gradient(z2t))

@xiadongdong
Copy link

xiadongdong commented Aug 31, 2022 via email

@sullinger
Copy link

sullinger commented Aug 31, 2022 via email

@Enya191113
Copy link

Enya191113 commented Aug 31, 2022 via email

@856tangbin
Copy link

856tangbin commented Aug 31, 2022 via email

@yanyiting
Copy link

yanyiting commented Aug 31, 2022 via email

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

6 participants