Spacy NER data in required format #9896
Answered
by
ljvmiranda921
hiteshpara
asked this question in
Help: Coding & Implementations
-
I have data in csv format where I have text, keyphrase, label, start, and end index. |
Beta Was this translation helpful? Give feedback.
Answered by
ljvmiranda921
Dec 19, 2021
Replies: 1 comment
-
Hi @hiteshpara , when training a spaCy model, it needs to be saved into a serialized spaCy format. This will allow you to efficiently store huge amounts of data. Since you already have the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DuyguA
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @hiteshpara , when training a spaCy model, it needs to be saved into a serialized spaCy format. This will allow you to efficiently store huge amounts of data. Since you already have the
label
,start
,end
, andtext
, it should be straightforward. You can check the NER Demo Project (especially theconvert.py
) as a guide.