mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
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
|
cdef double norm = 0.0
|
||||||
for line_num, line in enumerate(file_):
|
for line_num, line in enumerate(file_):
|
||||||
pieces = line.split()
|
pieces = line.split()
|
||||||
word_str = pieces.pop(0)
|
word_str = " " if line.startswith(" ") else pieces.pop(0)
|
||||||
if vec_len == -1:
|
if vec_len == -1:
|
||||||
vec_len = len(pieces)
|
vec_len = len(pieces)
|
||||||
elif vec_len != len(pieces):
|
elif vec_len != len(pieces):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user