Skip to content

Training own NER model from zero #12874

Discussion options

You must be logged in to vote

The general advice from the earlier thread #12570 still holds. Most of these are more general NLP questions, but a few spacy-specific pointers:

  1. Does the method nlp.pipe() that does the pipeleine faster affect accuracy?, if so how much? can i use the same for my own NER model or does this only work on the sandard NER Model?

nlp vs. nlp.pipe should not affect the output or accuracy.

  1. when training: do all the vectors, word embeddings , etc are provided by spacy? or do i have to do this manually?

There are vectors provided as part of the trained md/lg pipelines, but no vectors provided by default by the core spacy library itself. You can use spacy init vectors and the settings in your…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@JorGit91
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 feat / ner Feature: Named Entity Recognizer
2 participants