I'm loading pretrained Doc2Vec model using:
from gensim.models import Doc2Vec
model = Doc2Vec.load('/path/to/pretrained/model')
I'm getting the following error:
AttributeError: 'module' object has no attribute 'call_on_class_only'
Does anyone know how to fix it. The model was trained with gensim 0.13.3 and I'm using gensim 0.12.4.
Doc2Vec
somewhere? – kennytmDoc2Vec = ...
somewhere before callingDoc2Vec.load
? – kennytm