spaCy/spacy/tests/regression/test_issue4924.py
2020-02-12 12:00:13 +01:00

17 lines
226 B
Python

# coding: utf8
from __future__ import unicode_literals
import pytest
import spacy
@pytest.fixture
def nlp():
return spacy.blank("en")
def test_issue4924(nlp):
docs_golds = [("", {})]
nlp.evaluate(docs_golds)