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
Answers
I think its standard pearson correlation with by using the integer mapping of the classes.
~Martin
Dortmund, Germany
Hi,
Just looked up the Java doc and here is what it says: Computes the empirical corelation coefficient 'r' between label and prediction. For
P=prediction, L=label, V=Variance, Cov=Covariance
we calculate r by:Cov(L,P) / sqrt(V(L)*V(P))
So it is the Pearson correlation between the label and the prediction. Judging from a quick check of the source code itself this description is accurate.
Cheers,
Ingo