The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
What is the diference between Bregman Divergence Mahalanobis Distance and Mahalanobis Distance?
agucaba123
Member Posts: 3 Learner III
Hi, I'm a beginner in RapidMiner Studio. I'm working with clustering operators (k-means and k-medoid) and I want to know what is the diference between the Mahalanobis Distance (https://en.wikipedia.org/wiki/Mahalanobis_distance) and the option in the parameters of the operator which says "Bregman divergences" and the sub-option divergence: "Mahalanobis distance". I don't know if they are the same or not.
0
Best Answers
-
MartinLiebig Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert, University Professor Posts: 3,533 RM Data Scientist
Hi @agucaba123,
here is what we do:
@Override
public double calculateDistance(double[] value1, double[] value2) {
Matrix x = new Matrix(value1, value1.length);
Matrix y = new Matrix(value2, value2.length);
Matrix deltaxy = x.minus(y);
// compute the mahalanobis distance
return Math.sqrt(deltaxy.transpose().times(inverseCovariance).times(deltaxy).get(0, 0));
}Does this make sense?
BR,
Martin
- Sr. Director Data Solutions, Altair RapidMiner -
Dortmund, Germany1