textpipe / textpipe

Textpipe: clean and extract metadata from text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

copy-paste error in doc.aggregate_word_vectors

bdewilde opened this issue · comments

Looks like you forgot to change the numpy method used when aggregation == "var": https://github.com/textpipe/textpipe/blob/master/textpipe/doc.py#L500-L501

It should be numpy.var(vectors, axis=0).tolist(), right?