Skip to content
Discussion options

You must be logged in to vote

This is possible, but you'll have to change your config slightly. Basically for the next round of training, you don't want to create new components/models, but you want to start from the already trained pipeline. In terms of config values, that means you don't want to use any "factories" anymore, but you'll want to "source" your components instead, see https://spacy.io/usage/processing-pipelines#sourced-components

So let's say you were training an ner component and that's saved in models/model-last, then you should be able to do something like this in your config:

[components.ner]
source = "models/model-last"
component = "ner"

You won't need to specify the model of this ner component any…

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@miguelwon
Comment options

@polm
Comment options

@miguelwon
Comment options

@trivediashutosh
Comment options

@polm
Comment options

Answer selected by svlandeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
usage General spaCy usage training Training and updating models feat / cli Feature: Command-line interface
5 participants