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
We now have a problem with this part of code:
delta_mean += mean - m; let variance = delta_mean * delta_mean / (count - w).value_as::<T>().unwrap() / w.value_as::<T>().unwrap(); if variance < last_variance { break; }
It seems that in some moment 'delta_mean' is too small which causes problems in further comparison of 'variance' and 'last_variance'.
The text was updated successfully, but these errors were encountered:
anlava
Successfully merging a pull request may close this issue.
We now have a problem with this part of code:
It seems that in some moment 'delta_mean' is too small which causes problems in further comparison of 'variance' and 'last_variance'.
The text was updated successfully, but these errors were encountered: