You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
range(len(layer_params) // 2 - 2 will make the second hidden layer to be ignored in forward propagation, but luckily in your case it did not cause a error.
I changed it to range(len(layer_params) // 2 - 1 and rerun the notebook. it wroks fine but seems that there are no improves in result.
I found a mistake in Bayes by Backprop from scratch (NN, classification)
In Model definition - Neural net modeling Section
it shoud be
range(len(layer_params) // 2 - 2
will make the second hidden layer to be ignored in forward propagation, but luckily in your case it did not cause a error.I changed it to
range(len(layer_params) // 2 - 1
and rerun the notebook. it wroks fine but seems that there are no improves in result.The text was updated successfully, but these errors were encountered: