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
I'm pretty sure it should be
dists = np.zeros((N, k))
as dists matches the distance between each data sample and prototype.
https://github.com/IBM/AIF360/blob/master/aif360/algorithms/preprocessing/lfr_helpers/helpers.py#L10-L17
The text was updated successfully, but these errors were encountered:
That sound right and thanks for pointing this out.
The final results should not be affected as M_nk loops over k.
Sorry, something went wrong.
Yes, as long as k < P (else you have a bound error).
Yes, you are right. Thanks. Should be fixed in PR #84.
No branches or pull requests
I'm pretty sure it should be
as dists matches the distance between each data sample and prototype.
https://github.com/IBM/AIF360/blob/master/aif360/algorithms/preprocessing/lfr_helpers/helpers.py#L10-L17
The text was updated successfully, but these errors were encountered: