mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
* Add test from NSchrading
This commit is contained in:
parent
274b802830
commit
9dbc31d72c
|
@ -22,3 +22,26 @@ def test_orphan():
|
||||||
assert orphan.orth_ == 'orphan'
|
assert orphan.orth_ == 'orphan'
|
||||||
assert orphan.pos_ == 'ADJ'
|
assert orphan.pos_ == 'ADJ'
|
||||||
assert orphan.head.orth_ == 'token'
|
assert orphan.head.orth_ == 'token'
|
||||||
|
|
||||||
|
|
||||||
|
def _orphan_from_list(toks):
|
||||||
|
''' Take the tokens from nlp(), append them to a list, return the list '''
|
||||||
|
lst = []
|
||||||
|
for tok in toks:
|
||||||
|
lst.append(tok)
|
||||||
|
return lst
|
||||||
|
|
||||||
|
def test_list_orphans():
|
||||||
|
# Test case from NSchrading
|
||||||
|
nlp = English()
|
||||||
|
samples = ["a", "test blah wat okay"]
|
||||||
|
lst = []
|
||||||
|
for sample in samples:
|
||||||
|
# Go through all the samples, call nlp() on each to get tokens,
|
||||||
|
# pass those tokens to the _orphan_from_list() function, get a list back
|
||||||
|
# and put all results in another list
|
||||||
|
lst.extend(_orphan_from_list(nlp(sample)))
|
||||||
|
# go through the list of all tokens and try to print orth_
|
||||||
|
orths = ['a', 'test', 'blah', 'wat', 'okay']
|
||||||
|
for i, l in enumerate(lst):
|
||||||
|
assert l.orth_ == orths[i]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user