suzuki.sh
suzuki.sh
Is this problem still unresolved? I have reproduced the error `ValueError: operands could not be broadcast together with shapes` with the following program using the source code from the develop...
I have found that this `ValueError` can be resolved by using `fill_norms(force=True)`. ```python from gensim.models import Word2Vec import numpy model = Word2Vec(sentences=[ ["this", "is", "test1"], ["that", "is", "test2"], ], vector_size=2,...
@gojomo Thanks for your comment. Indeed, this PR https://github.com/RaRe-Technologies/gensim/pull/3320 still does not seem to work well when updating vectors. Does this mean that I should stop checking with `len(self.norms)` when...