2017-10-03 12:26:20 +00:00
|
|
|
//- 💫 DOCS > USAGE > TRAINING > NER
|
|
|
|
|
|
|
|
p
|
|
|
|
| All #[+a("/models") spaCy models] support online learning, so
|
|
|
|
| you can update a pre-trained model with new examples. To update the
|
|
|
|
| model, you first need to create an instance of
|
|
|
|
| #[+api("goldparse") #[code GoldParse]], with the entity labels
|
|
|
|
| you want to learn. You'll usually need to provide many examples to
|
|
|
|
| meaningfully improve the system — a few hundred is a good start, although
|
|
|
|
| more is better.
|
|
|
|
|
|
|
|
p
|
|
|
|
| You should avoid iterating over the same few examples multiple times, or
|
|
|
|
| the model is likely to "forget" how to annotate other examples. If you
|
|
|
|
| iterate over the same few examples, you're effectively changing the loss
|
|
|
|
| function. The optimizer will find a way to minimize the loss on your
|
|
|
|
| examples, without regard for the consequences on the examples it's no
|
|
|
|
| longer paying attention to. One way to avoid this
|
|
|
|
| #[+a("https://explosion.ai/blog/pseudo-rehearsal-catastrophic-forgetting", true) "catastrophic forgetting" problem]
|
|
|
|
| is to "remind"
|
|
|
|
| the model of other examples by augmenting your annotations with sentences
|
|
|
|
| annotated with entities automatically recognised by the original model.
|
|
|
|
| Ultimately, this is an empirical process: you'll need to
|
|
|
|
| #[strong experiment on your own data] to find a solution that works best
|
|
|
|
| for you.
|
|
|
|
|
2017-10-25 20:17:23 +00:00
|
|
|
+h(3, "example-new-entity-type") Training an additional entity type
|
2017-10-03 12:26:20 +00:00
|
|
|
|
|
|
|
p
|
2017-10-25 20:17:23 +00:00
|
|
|
| This script shows how to add a new entity type #[code ANIMAL] to an
|
|
|
|
| existing pre-trained NER model, or an empty #[code Language] class. To
|
|
|
|
| keep the example short and simple, only a few sentences are
|
2017-10-03 12:26:20 +00:00
|
|
|
| provided as examples. In practice, you'll need many more — a few hundred
|
|
|
|
| would be a good start. You will also likely need to mix in examples of
|
|
|
|
| other entity types, which might be obtained by running the entity
|
|
|
|
| recognizer over unlabelled sentences, and adding their annotations to the
|
|
|
|
| training set.
|
|
|
|
|
|
|
|
+github("spacy", "examples/training/train_new_entity_type.py")
|
|
|
|
|
2017-10-25 20:17:23 +00:00
|
|
|
p Training a new entity type requires the following steps:
|
|
|
|
|
|
|
|
+list("numbers")
|
|
|
|
+item
|
|
|
|
| Create #[+api("doc") #[code Doc]] and
|
|
|
|
| #[+api("goldparse") #[code GoldParse]] objects for
|
|
|
|
| #[strong each example in your training data].
|
|
|
|
|
|
|
|
+item
|
|
|
|
| #[strong Load the model] you want to start with, or create an
|
|
|
|
| #[strong empty model] using
|
|
|
|
| #[+api("spacy#blank") #[code spacy.blank()]] with the ID of your
|
|
|
|
| language. If you're using an existing model, make sure to disable
|
|
|
|
| all other pipeline components during training using
|
|
|
|
| #[+api("language#disable_pipes") #[code nlp.disable_pipes]]. This way,
|
|
|
|
| you'll only be training the entity recognizer.
|
|
|
|
|
|
|
|
+item
|
|
|
|
| #[strong Add the new entity label] to the entity recognizer using the
|
|
|
|
| #[+api("entityrecognizer#add_label") #[code add_label]] method. You
|
|
|
|
| can access the entity recognizer in the pipeline via
|
|
|
|
| #[code nlp.get_pipe('ner')].
|
|
|
|
|
|
|
|
+item
|
|
|
|
| #[strong Loop over] the examples and call
|
|
|
|
| #[+api("language#update") #[code nlp.update]], which steps through
|
|
|
|
| the words of the input. At each word, it makes a
|
|
|
|
| #[strong prediction]. It then consults the annotations provided on the
|
|
|
|
| #[+api("goldparse") #[code GoldParse]] instance, to see whether it was
|
|
|
|
| right. If it was wrong, it adjusts its weights so that the correct
|
|
|
|
| action will score higher next time.
|
|
|
|
|
|
|
|
+item
|
|
|
|
| #[strong Save] the trained model using
|
|
|
|
| #[+api("language#to_disk") #[code nlp.to_disk()]].
|
|
|
|
|
|
|
|
+item
|
|
|
|
| #[strong Test] the model to make sure the new entity is recognized
|
|
|
|
| correctly.
|
|
|
|
|
2017-10-03 12:26:20 +00:00
|
|
|
+h(3, "example-ner-from-scratch") Example: Training an NER system from scratch
|
|
|
|
|
|
|
|
p
|
|
|
|
| This example is written to be self-contained and reasonably transparent.
|
|
|
|
| To achieve that, it duplicates some of spaCy's internal functionality.
|
|
|
|
| Specifically, in this example, we don't use spaCy's built-in
|
|
|
|
| #[+api("language") #[code Language]] class to wire together the
|
|
|
|
| #[+api("vocab") #[code Vocab]], #[+api("tokenizer") #[code Tokenizer]]
|
|
|
|
| and #[+api("entityrecognizer") #[code EntityRecognizer]]. Instead, we
|
|
|
|
| write our own simle #[code Pipeline] class, so that it's easier to see
|
|
|
|
| how the pieces interact.
|
|
|
|
|
|
|
|
+github("spacy", "examples/training/train_ner_standalone.py")
|