Hey there,
I've been testing the StanfordNLP NE node, and I have a quick question, perhaps for a workaround. As below, the tagger identifies correctly New York as a location, or even Thursday morning as a expression of date/times
----------------------------------------------------------------------------------------------------------------------------------------------------
"event in New [NE(LOCATION)] York [NE(LOCATION)] Thursday [NE(DATE)] morning[NE(TIME)]"
----------------------------------------------------------------------------------------------------------------------------------------------------
But how could I aggregate terms togheter to represent a "single word". it would make more sense of course of having "new york" as a term rather than having "new" and "york". I also understand that it's possible to create a dictionary with multiword terms and tag them, but this assumes I know them already - which I won't everytime.
So, is there any workaround for this case? For example, something like a rule where if you have a NE(LOCATION) + NE(LOCATION), to tag them as a single term? That would be super helpful.
Thanks!
Gustavo Velho