I have my own POS data with below format.
Sentence:
I love Stack Overflow.
POS:
I/PRP love/VBP Stack/NNP Overflow/NNP ./.
So, how I train Syntaxnet with this data?
And also I want to get this output:
**(ROOT
(S
(NP (PRP I))
(VP (VBP love)
(NP (NNP Stack) (NNP Overflow)))
(. .)))**
What is the format of "record_format: 'english-text'" in Syntaxnet context.pbtxt file? How its look like?