mirror of https://github.com/explosion/spaCy.git
Merge pull request #738 from danielhers/master
Fix #737: support loading word vectors with " " as a word
This commit is contained in:
commit
a6d7147cf0
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue