spaCy/spacy/tests/regression/test_issue1518.py
2017-11-08 22:18:37 +01:00

8 lines
191 B
Python

from ...vectors import Vectors
def test_issue1518():
'''Test vectors.resize() works.'''
vectors = Vectors(shape=(10, 10))
vectors.add(u'hello', row=2)
vectors.resize((5, 9))