Code starts
import practnlptools.tools import Annotator
annotator= Annotator()
srl= annotator.getAnnotations("Mary is playing with john")
code ends
output
'srl': [{'A0': 'Marie', 'A1': 'with john', 'V': 'playing'}]
expected output
'srl': [{'A0': 'Marie', 'A1': 'john', 'V': 'playing'}]
can anything be done to make this possible?
Any insight will be immensely helpful.
Thankyou

Code starts
import practnlptools.tools import Annotator
annotator= Annotator()
srl= annotator.getAnnotations("Mary is playing with john")
code ends
output
'srl': [{'A0': 'Marie', 'A1': 'with john', 'V': 'playing'}]
expected output
'srl': [{'A0': 'Marie', 'A1': 'john', 'V': 'playing'}]
can anything be done to make this possible?
Any insight will be immensely helpful.
Thankyou