Parsing a noun chunk #10266
-
Spacy is awesome, thank you all for your contributions to it. I am using it to analyse biomedical text. This often contains large noun chunks, e.g. human malignant breast cancer cell lines, which Spacy parses as: I can generate a large training set automatically. Can I retrain the parser? Or is this behaviour hard coded and not trainable? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's possible to train the parser, the same as any other component. We don't have guides for it specifically because the parser model is pretty genre neutral, so most users don't need it, though your case is an exception to that. Before training your own parser model, I would take a look at existing pretrained models for your field, like sciSpacy. |
Beta Was this translation helpful? Give feedback.
It's possible to train the parser, the same as any other component. We don't have guides for it specifically because the parser model is pretty genre neutral, so most users don't need it, though your case is an exception to that.
Before training your own parser model, I would take a look at existing pretrained models for your field, like sciSpacy.