2020-08-10 14:13:18 +03:00
|
|
|
# cython: infer_types=True, profile=True
|
2020-10-08 22:33:49 +03:00
|
|
|
from typing import Optional, Tuple, Iterable, Iterator, Callable, Union, Dict
|
2020-07-22 14:42:59 +03:00
|
|
|
import srsly
|
2021-01-29 03:51:21 +03:00
|
|
|
import warnings
|
2020-07-22 14:42:59 +03:00
|
|
|
|
|
|
|
from ..tokens.doc cimport Doc
|
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
from ..training import Example
|
2020-10-03 23:34:10 +03:00
|
|
|
from ..errors import Errors, Warnings
|
2020-10-08 22:33:49 +03:00
|
|
|
from ..language import Language
|
2021-01-29 03:51:21 +03:00
|
|
|
from ..util import raise_error
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2020-07-31 00:30:54 +03:00
|
|
|
cdef class Pipe:
|
2020-10-08 22:33:49 +03:00
|
|
|
"""This class is a base class and not instantiated directly. It provides
|
|
|
|
an interface for pipeline components to implement.
|
|
|
|
Trainable pipeline components like the EntityRecognizer or TextCategorizer
|
|
|
|
should inherit from the subclass 'TrainablePipe'.
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe
|
2020-07-22 14:42:59 +03:00
|
|
|
"""
|
|
|
|
|
2020-10-03 23:34:10 +03:00
|
|
|
@classmethod
|
|
|
|
def __init_subclass__(cls, **kwargs):
|
|
|
|
"""Raise a warning if an inheriting class implements 'begin_training'
|
|
|
|
(from v2) instead of the new 'initialize' method (from v3)"""
|
|
|
|
if hasattr(cls, "begin_training"):
|
2020-10-04 11:11:27 +03:00
|
|
|
warnings.warn(Warnings.W088.format(name=cls.__name__))
|
2020-10-03 23:34:10 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
def __call__(self, Doc doc) -> Doc:
|
2020-07-29 15:03:35 +03:00
|
|
|
"""Apply the pipe to one document. The document is modified in place,
|
|
|
|
and returned. This usually happens under the hood when the nlp object
|
|
|
|
is called on a text and all components are applied to the Doc.
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2020-08-31 13:41:39 +03:00
|
|
|
docs (Doc): The Doc to process.
|
2020-07-28 14:37:31 +03:00
|
|
|
RETURNS (Doc): The processed Doc.
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#call
|
2020-07-22 14:42:59 +03:00
|
|
|
"""
|
2020-10-08 22:33:49 +03:00
|
|
|
raise NotImplementedError(Errors.E931.format(parent="Pipe", method="__call__", name=self.name))
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
def pipe(self, stream: Iterable[Doc], *, batch_size: int=128) -> Iterator[Doc]:
|
2020-07-28 14:37:31 +03:00
|
|
|
"""Apply the pipe to a stream of documents. This usually happens under
|
|
|
|
the hood when the nlp object is called on a text and all components are
|
|
|
|
applied to the Doc.
|
|
|
|
|
|
|
|
stream (Iterable[Doc]): A stream of documents.
|
|
|
|
batch_size (int): The number of documents to buffer.
|
|
|
|
YIELDS (Doc): Processed documents in order.
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#pipe
|
2020-07-22 14:42:59 +03:00
|
|
|
"""
|
2021-01-29 03:51:21 +03:00
|
|
|
error_handler = self.get_error_handler()
|
2020-10-08 22:33:49 +03:00
|
|
|
for doc in stream:
|
2021-01-29 03:51:21 +03:00
|
|
|
try:
|
|
|
|
doc = self(doc)
|
|
|
|
yield doc
|
|
|
|
except Exception as e:
|
|
|
|
error_handler(self.name, self, [doc], e)
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
def initialize(self, get_examples: Callable[[], Iterable[Example]], *, nlp: Language=None):
|
|
|
|
"""Initialize the pipe. For non-trainable components, this method
|
|
|
|
is optional. For trainable components, which should inherit
|
|
|
|
from the subclass TrainablePipe, the provided data examples
|
|
|
|
should be used to ensure that the internal model is initialized
|
|
|
|
properly and all input/output dimensions throughout the network are
|
|
|
|
inferred.
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2020-09-08 23:44:25 +03:00
|
|
|
get_examples (Callable[[], Iterable[Example]]): Function that
|
|
|
|
returns a representative sample of gold-standard Example objects.
|
2020-09-29 13:20:26 +03:00
|
|
|
nlp (Language): The current nlp object the component is part of.
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#initialize
|
2020-07-28 14:37:31 +03:00
|
|
|
"""
|
2020-09-30 01:05:27 +03:00
|
|
|
pass
|
2020-09-08 23:44:25 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
def score(self, examples: Iterable[Example], **kwargs) -> Dict[str, Union[float, Dict[str, float]]]:
|
2020-07-28 14:37:31 +03:00
|
|
|
"""Score a batch of examples.
|
|
|
|
|
|
|
|
examples (Iterable[Example]): The examples to score.
|
|
|
|
RETURNS (Dict[str, Any]): The scores.
|
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#score
|
2020-07-28 14:37:31 +03:00
|
|
|
"""
|
Refactor the Scorer to improve flexibility (#5731)
* Refactor the Scorer to improve flexibility
Refactor the `Scorer` to improve flexibility for arbitrary pipeline
components.
* Individual pipeline components provide their own `evaluate` methods
that score a list of `Example`s and return a dictionary of scores
* `Scorer` is initialized either:
* with a provided pipeline containing components to be scored
* with a default pipeline containing the built-in statistical
components (senter, tagger, morphologizer, parser, ner)
* `Scorer.score` evaluates a list of `Example`s and returns a dictionary
of scores referring to the scores provided by the components in the
pipeline
Significant differences:
* `tags_acc` is renamed to `tag_acc` to be consistent with `token_acc`
and the new `morph_acc`, `pos_acc`, and `lemma_acc`
* Scoring is no longer cumulative: `Scorer.score` scores a list of
examples rather than a single example and does not retain any state
about previously scored examples
* PRF values in the returned scores are no longer multiplied by 100
* Add kwargs to Morphologizer.evaluate
* Create generalized scoring methods in Scorer
* Generalized static scoring methods are added to `Scorer`
* Methods require an attribute (either on Token or Doc) that is
used to key the returned scores
Naming differences:
* `uas`, `las`, and `las_per_type` in the scores dict are renamed to
`dep_uas`, `dep_las`, and `dep_las_per_type`
Scoring differences:
* `Doc.sents` is now scored as spans rather than on sentence-initial
token positions so that `Doc.sents` and `Doc.ents` can be scored with
the same method (this lowers scores since a single incorrect sentence
start results in two incorrect spans)
* Simplify / extend hasattr check for eval method
* Add hasattr check to tokenizer scoring
* Simplify to hasattr check for component scoring
* Reset Example alignment if docs are set
Reset the Example alignment if either doc is set in case the
tokenization has changed.
* Add PRF tokenization scoring for tokens as spans
Add PRF scores for tokens as character spans. The scores are:
* token_acc: # correct tokens / # gold tokens
* token_p/r/f: PRF for (token.idx, token.idx + len(token))
* Add docstring to Scorer.score_tokenization
* Rename component.evaluate() to component.score()
* Update Scorer API docs
* Update scoring for positive_label in textcat
* Fix TextCategorizer.score kwargs
* Update Language.evaluate docs
* Update score names in default config
2020-07-25 13:53:02 +03:00
|
|
|
return {}
|
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
@property
|
|
|
|
def is_trainable(self) -> bool:
|
|
|
|
return False
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
@property
|
|
|
|
def labels(self) -> Optional[Tuple[str]]:
|
|
|
|
return tuple()
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
@property
|
|
|
|
def label_data(self):
|
|
|
|
"""Optional JSON-serializable data that would be sufficient to recreate
|
|
|
|
the label set if provided to the `pipe.initialize()` method.
|
2020-07-28 14:37:31 +03:00
|
|
|
"""
|
2020-10-08 22:33:49 +03:00
|
|
|
return None
|
2020-07-22 14:42:59 +03:00
|
|
|
|
2020-10-08 22:33:49 +03:00
|
|
|
def _require_labels(self) -> None:
|
|
|
|
"""Raise an error if this component has no labels defined."""
|
|
|
|
if not self.labels or list(self.labels) == [""]:
|
|
|
|
raise ValueError(Errors.E143.format(name=self.name))
|
2020-07-28 14:37:31 +03:00
|
|
|
|
2021-01-29 03:51:21 +03:00
|
|
|
def set_error_handler(self, error_handler: Callable) -> None:
|
|
|
|
"""Set an error handler function.
|
|
|
|
|
|
|
|
error_handler (Callable[[str, Callable[[Doc], Doc], List[Doc], Exception], None]):
|
|
|
|
Function that deals with a failing batch of documents. This callable function should take in
|
|
|
|
the component's name, the component itself, the offending batch of documents, and the exception
|
|
|
|
that was thrown.
|
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#set_error_handler
|
2021-01-29 03:51:21 +03:00
|
|
|
"""
|
|
|
|
self.error_handler = error_handler
|
|
|
|
|
|
|
|
def get_error_handler(self) -> Optional[Callable]:
|
|
|
|
"""Retrieve the error handler function.
|
|
|
|
|
|
|
|
RETURNS (Callable): The error handler, or if it's not set a default function that just reraises.
|
|
|
|
|
2021-01-30 12:09:38 +03:00
|
|
|
DOCS: https://spacy.io/api/pipe#get_error_handler
|
2021-01-29 03:51:21 +03:00
|
|
|
"""
|
|
|
|
if hasattr(self, "error_handler"):
|
|
|
|
return self.error_handler
|
|
|
|
return raise_error
|
|
|
|
|
|
|
|
|
2020-07-28 14:37:31 +03:00
|
|
|
def deserialize_config(path):
|
|
|
|
if path.exists():
|
|
|
|
return srsly.read_json(path)
|
|
|
|
else:
|
|
|
|
return {}
|