Add missing Scorer imports

This commit is contained in:
Adriane Boyd 2020-07-27 15:08:51 +02:00
parent 8bb0507777
commit 34c92dfe63
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from ..errors import Errors
from ..util import ensure_path, to_disk, from_disk
from ..tokens import Doc, Span
from ..matcher import Matcher, PhraseMatcher
from ..scorer import Scorer
DEFAULT_ENT_ID_SEP = "||"

View File

@ -8,6 +8,7 @@ from ..gold import Example, spans_from_biluo_tags, iob_to_biluo, biluo_to_iob
from ..tokens import Doc
from ..language import Language
from ..vocab import Vocab
from ..scorer import Scorer
from .. import util
from .pipe import Pipe