mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Create vectors correctly
This commit is contained in:
parent
33229b1c9e
commit
9010a1a060
|
@ -252,7 +252,7 @@ cdef class Vocab:
|
||||||
"""
|
"""
|
||||||
if new_dim is None:
|
if new_dim is None:
|
||||||
new_dim = self.vectors.data.shape[1]
|
new_dim = self.vectors.data.shape[1]
|
||||||
self.vectors = Vectors(self.strings, new_dim)
|
self.vectors = Vectors(self.strings, width=new_dim)
|
||||||
|
|
||||||
def get_vector(self, orth):
|
def get_vector(self, orth):
|
||||||
"""Retrieve a vector for a word in the vocabulary.
|
"""Retrieve a vector for a word in the vocabulary.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user