Fix #737: support loading word vectors with " " as a word

This commit is contained in:
Daniel Hershcovich 2017-01-12 17:00:14 +02:00
parent 7cb3d74426
commit 99eb494a82
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ cdef class Vocab:
cdef double norm = 0.0
for line_num, line in enumerate(file_):
pieces = line.split()
word_str = pieces.pop(0)
word_str = " " if line.startswith(" ") else pieces.pop(0)
if vec_len == -1:
vec_len = len(pieces)
elif vec_len != len(pieces):