edsnlp.pipelines.trainable.nested_ner.factory
create_component(nlp, name, model, ent_labels=None, spans_labels=None, scorer=None)
Initialize a general named entity recognizer (with or without nested or overlapping entities).
PARAMETER | DESCRIPTION |
---|---|
nlp |
The current nlp object
TYPE:
|
name |
Name of the component
TYPE:
|
model |
The model to extract the spans
TYPE:
|
ent_labels |
list of labels to filter entities for in
DEFAULT:
|
spans_labels |
Mapping from span group names to list of labels to look for entities and assign the predicted entities
DEFAULT:
|
scorer |
Method to call to score predictions
DEFAULT:
|
Source code in edsnlp/pipelines/trainable/nested_ner/factory.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|