Facing ⚠ Multiple root labels during data debug #9747
-
How to reproduce the behaviourpython -m spacy debug data ./config.cfg Your Environment
============================== Vocab & Vectors ============================== ========================= Morphologizer (POS+Morph) ========================= ============================= Dependency Parsing ============================= ================================== Summary ================================== Could anybody please tell me why I'm facing ⚠ Multiple root labels warning, and how to fix that ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, it looks like something has gone wrong with your data conversion. It looks like every single word thinks it's the head of its own one-word sentence:
My guess would be that the |
Beta Was this translation helpful? Give feedback.
Hi, it looks like something has gone wrong with your data conversion. It looks like every single word thinks it's the head of its own one-word sentence:
My guess would be that the
token.head
values weren't set correctly in your conversion?