I am using stanza 1.6.1. I have been experimenting with Stanza's constituency parser.
In certain cases it splits a sentence into 2 Sentence objects. For example, take this sentence : Pull up Field with low precision.
It splits it into 2 sentences internally (Pull up and Field with low precision) and so the constituency parser output comes out as 2 trees (one for each sentence).
Changing "Field" to lowercase in above sentence makes Stanza treat it as one sentence and I get one tree representation (as expected) as constituency output.
Is there some way to make Stanza consider this as one sentence apart from string manipulation techniques like converting to lowercase? Or is there a case insensitive model that I could use?