markdregan / K-Nearest-Neighbors-with-Dynamic-Time-Warping

Python implementation of KNN and DTW classification algorithm
774 stars 215 forks source link

saving the trained model #8

Open souravdalai opened 6 years ago

souravdalai commented 6 years ago

hey, thanks for the wonderful tutorial, I am wondering how to save once the model is trained, I tried using joblib (sklearn), after saving whenever I am loading the model it starts training again. can you please help me with that.

white2018 commented 5 years ago

I don't think there is really a trained model you could save. Actually, only the training data are saved, as well as the KnnDtw object itself.