Taras Baranyuk

Results 3 comments of Taras Baranyuk

``` import pickle with open("path_to_the_model", 'rb') as f: # the saved model that has been trained on version 3.8.3 (I can't provide - NDA) model = pickle.load(f) model.docvecs.most_similar(id) # or...

After `model.dv = model.__dict__['docvecs']` : ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) ~/.pyenv/versions/3.8.6/lib/python3.8/site-packages/gensim/models/keyedvectors.py in most_similar(self, positive, negative, topn, clip_start, clip_end, restrict_vocab, indexer) 733 negative = [] 734 --> 735...

[Machine Learning: A Probabilistic Perspective](https://vk.com/doc-44016343_199213512?hash=2ad697dae93b3fea0e&dl=4fa59572a2f58a3219) [Data Science For Dummies](https://www.geekbooks.me/book/view/data-science-for-dummies)