diff --git a/spacy/vectors.pyx b/spacy/vectors.pyx index 4a9dfe2a4..be0f6db09 100644 --- a/spacy/vectors.pyx +++ b/spacy/vectors.pyx @@ -243,7 +243,6 @@ cdef class Vectors: else: return key in self.key2row - def __eq__(self, other): # Check for equality, with faster checks first return ( @@ -253,7 +252,6 @@ cdef class Vectors: == other.to_bytes(exclude=["strings"]) ) - def resize(self, shape, inplace=False): """Resize the underlying vectors array. If inplace=True, the memory is reallocated. This may cause other references to the data to become