I was wondering if it is possible to train two trainable components in Spacy with two different datasets ? In fact, I would like to use the NER and the text classifier but since the train datasets for these two components should be annotated differently so I don't know how can I train both components at once...
Should I train each task in a separate pipeline and assemble both pipelines at the end ? Or should I train the NER, package this pipeline and then use this package as input to train the text classifier ?
Many thanks in advance for your help