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

Python implementation of KNN and DTW classification algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

saving the trained model

souravdalai opened this issue · comments

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.

commented

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.