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
Readme provides the result as 0.02, is there any normalization or what influence the result?
x = np.array([1,1,1,0,0]) y=np.array([1,0,1,1,0]) mutual_info_score(x,y) 0.013844293808390418
The text was updated successfully, but these errors were encountered:
MIToolbox uses log base 2 for all computations, scikit-learn uses log base e. So our units are "bits" and theirs are "nats".
Sorry, something went wrong.
Understood. thanks for your reply
No branches or pull requests
Readme provides the result as 0.02, is there any normalization or what influence the result?
The text was updated successfully, but these errors were encountered: