spaCy/tests/tokens/test_vec.py

19 lines
376 B
Python
Raw Normal View History

2015-01-30 08:45:45 +03:00
from __future__ import unicode_literals
from spacy.en import English
import pytest
2015-07-23 02:19:11 +03:00
@pytest.mark.vectors
2015-01-30 08:45:45 +03:00
def test_vec(EN):
hype = EN.vocab['hype']
assert hype.orth_ == 'hype'
assert 0.08 >= hype.repvec[0] > 0.07
2015-04-19 22:39:18 +03:00
2015-07-23 02:19:11 +03:00
@pytest.mark.vectors
2015-01-30 08:45:45 +03:00
def test_capitalized(EN):
hype = EN.vocab['Hype']
assert hype.orth_ == 'Hype'
assert 0.08 >= hype.repvec[0] > 0.07