Shogun print shogun.MulticlassLabels values

83 Views Asked by At

I wanted to use the mahalanobis distance with LMNN, which is not yet implemented in sklearn.

I try to use the metric-learn library but the LMNN is slow. So, I am looking into shogun.

I saw this tutorial on LMNN . I am using the distance learned in LMNN and using it with the KNN model.

In the tutorial, they only explained how to see the accuracy.

eval = MulticlassAccuracy() accuracy = eval.evaluate(labels_predict, labels_test)

But, I want to see the value of the predicted labels.

1

There are 1 best solutions below

0
On

From the API:

SGVector<float64_t> CMulticlassLabels::get_labels() (inherited from CDenseLabels)

In your case: labels_predict.get_labels(), which will give you a numpy array.