Reputation: 870
I have a LSI model stored and the model is getting stored as model.pkl and model.pkl.projection.
However, when I try to load the model the loading is failing because its trying to look for projection file with .npy
loading LsiModel object from /var/app/data/lsi_model.pkl.projection
loading u from /var/app/data/lsi_model.pkl.projection.u.npy with mmap=r
failed to load projection from /var/app/data/lsi_model.pkl.projection:
[Errno 2] No such file or directory:
'/var/app/data/lsi_model.pkl.projection.u.npy'
Any idea why this would be happening?
Upvotes: 1
Views: 147