Pythonic Training of Custom NER Models #10440
-
Hello, I am new to spaCy and trying to train a custom NER model. Based on the documentations, to train a model one needs to play with some widget to generate a config and use it in command line for training. I am wondering if there is a recipe to use spaCy like standard ML frameworks, where you can import models and create pipelines and train models (e.g. HuggingFace's way) all within Python? That can greatly improve the pipeline automation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The code for generating configs and training are all exposed as functions in spaCy. For example, see the docs for |
Beta Was this translation helpful? Give feedback.
The code for generating configs and training are all exposed as functions in spaCy. For example, see the docs for
init config
.