scikit-learn: fitting KNeighborsClassifier without labels
I’m trying to fit a simple KNN classifier, and wanted to use the scikit-learn implementation in order to benefit from their efficient implementation (multiprocessing, tree-based algorithms). However, what I want to get as a result is just the list of distances and nearest neighbours for each data point, rather than the predicted label. I will… Read More scikit-learn: fitting KNeighborsClassifier without labels