HaSH
Results
1
comments of
HaSH
In case of NMSLibAlternatingLeastSquares, index and model can be saved/pickled separately. Following code works for me. ```python class NMSLibAlternatingLeastSquaresRecommender(implicit.approximate_als.NMSLibAlternatingLeastSquares): def save(self, dirpath): pkl_file = os.path.join(dirpath, 'model.pickle') index_file = os.path.join(dirpath, 'search_index')...