mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-28 10:56:31 +03:00
8 lines
138 B
Python
8 lines
138 B
Python
from spacy.language import Language
|
|
|
|
|
|
def test_issue4924():
|
|
nlp = Language()
|
|
docs_golds = [("", {})]
|
|
nlp.evaluate(docs_golds)
|