How to save a knn model?
I need to save the results of a fit of the SKlearn NearestNeighbors model:
knn = NearestNeighbors(10)
knn.fit(my_data)
How do you save to disk the traied knn
using Python?
Topic k-nn scikit-learn python
Category Data Science