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
Introduction MNDL formula has a mistake in line with the paper Improving X-Means Clustering with MNDL - M.Shahbaba, S.Beheshti.
Improving X-Means Clustering with MNDL - M.Shahbaba, S.Beheshti
Incorrect part in the code:
scores = sigma_sqrt * (2 * K)**0.5 * ((2 * K)**0.5 + betta) / N + W - sigma_sqrt + Ks + 2 * alpha**0.5 * sigma_sqrt / N
Description Scores should be calculated correctly.
The text was updated successfully, but these errors were encountered:
#619, #623: Distance metric for X-Means. Correction for MNDL.
221b027
#623, #624: Correction for the formula of the MNDL splitting criteria…
cdb0ca9
…. Introduced new parameters 'alpha' and 'beta' in order to control MNDL.
annoviko
No branches or pull requests
Introduction
MNDL formula has a mistake in line with the paper
Improving X-Means Clustering with MNDL - M.Shahbaba, S.Beheshti
.Incorrect part in the code:
Description
Scores should be calculated correctly.
The text was updated successfully, but these errors were encountered: