Can I train a custom NER in Google Colaboratory? #10813
Unanswered
vmatter
asked this question in
Help: Coding & Implementations
Replies: 1 comment 5 replies
-
|
Most of the training process in spaCy is done via the command line. If you can access this via Google Colab then it should be possible. I don't use Colab that much, but I recall that you can prefix "!" in your cells to make it a command (in case you can't access Colab's terminal directly). |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to train a custom NER for a work that I am developing in Google Colaboratory and according to spaCy's documentation, to train a custom ner I need to generate a config file and after that run the following commands:
python -m spacy init fill-config base_config.cfg config.cfgpython -m spacy train config.cfg --output ./output --paths.train ./train.spacy --paths.dev ./dev.spacyIs there a way to do this in Google Colaboratory? If not, is there another way to train a customer NER using spaCy?
Many thanks.
Beta Was this translation helpful? Give feedback.
All reactions