mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
* Fix test
This commit is contained in:
parent
c70eb776ae
commit
883ff1f59e
|
@ -67,8 +67,8 @@ def test_count_by(nlp):
|
||||||
from spacy import attrs
|
from spacy import attrs
|
||||||
tokens = nlp('apple apple orange banana')
|
tokens = nlp('apple apple orange banana')
|
||||||
assert tokens.count_by(attrs.ORTH) == {3699: 2, 3750: 1, 5965: 1}
|
assert tokens.count_by(attrs.ORTH) == {3699: 2, 3750: 1, 5965: 1}
|
||||||
assert repr(tokens.to_array([attrs.ORTH])) == repr(numpy.array([[2529],
|
assert repr(tokens.to_array([attrs.ORTH])) == repr(numpy.array([[3699],
|
||||||
[2529],
|
[3699],
|
||||||
[3750],
|
[3750],
|
||||||
[5965]], dtype=numpy.int32))
|
[5965]], dtype=numpy.int32))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user