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
No description provided.
The text was updated successfully, but these errors were encountered:
I see that as well, should it not be ( precision**2 )/ 2 instead of just precision?
Sorry, something went wrong.
So, what is the correct? Did you try them?
if ‘precision = K.exp(-log_var[0])’,then the network learning $\log{\sigma}^2$,'precision * (y_true - y_pred)**2. + log_var[0]' is $\frac{1}{\sigma ^ 2} L(w) + 2 * \log{\sigma}$;
if ‘precision = K.exp(-log_var[0]) ** 2 / 2’,then the network learning $\log{\sigma}$,'precision * (y_true - y_pred)**2. + log_var[0]' is $\frac{1}{2 * \sigma ^ 2} L(w) + \log{\sigma}$;
The difference between the two is the coefficient 2,for network training ,they are the same.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: