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
l2_loss += tf.nn.l2_loss(b) 这里应该是 l2_loss += tf.nn.l2_loss(W) l2损失正则应该是对W起作用,当然也可以同时加上loss(b),像原始版本的代码一样。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
l2_loss += tf.nn.l2_loss(b)
这里应该是
l2_loss += tf.nn.l2_loss(W)
l2损失正则应该是对W起作用,当然也可以同时加上loss(b),像原始版本的代码一样。
The text was updated successfully, but these errors were encountered: