mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
18 lines
335 B
Python
18 lines
335 B
Python
from __future__ import unicode_literals
|
|
|
|
from spacy.en import English
|
|
|
|
import pytest
|
|
|
|
|
|
def test_vec(EN):
|
|
hype = EN.vocab['hype']
|
|
assert hype.orth_ == 'hype'
|
|
assert 0.08 >= hype.repvec[0] > 0.07
|
|
|
|
|
|
def test_capitalized(EN):
|
|
hype = EN.vocab['Hype']
|
|
assert hype.orth_ == 'Hype'
|
|
assert 0.08 >= hype.repvec[0] > 0.07
|