Reputation: 4766
I am trying to update a software that is using Stanford core NLP version 1.3.4 to version 3.5.1.
In the software, there are some English grammatical relations that are used. When I update the code with the new version of the library, the following English grammatical relations are missing in the new version:
CONTROLLING_SUBJECT
- I think that it would be OK if I replace this with SEMANTIC_DEPENDENT
.PURPOSE_CLAUSE_MODIFIER
- I think that this can be replaced with ADV_CLAUSE_MODIFIER
.COMPLEMENTIZER
- this might be raplced with MARKER
(I think).PARTICIPIAL_MODIFIER
and INFINITIVAL_MODIFIER
could be replaced with CLAUSAL_COMPLEMENT
.I am not sure if this is the case, I have been digging through some documentations, but since there is a big difference between the versions 1.3.4 and 3.5.1 - I am not sure if these missing relations are now part of the relations I mentioned.
Are these replacements I've mentioned above correct? If not, with which other relations can I replace them?
Upvotes: 1
Views: 97
Reputation: 1070
I don't think any of them are exactly correct except for (probably) replacing CONTROLLING_SUBJECT with SEMANTIC_DEPENDENT. Most of them seem like close matches or subsets - I think even if you talked to the Standford you won't get exact replacements. I think you best bet is empirical validation. :(
Sorry, I know this isn't what you want to hear. Your guesses do seem reasonable though.
Upvotes: 1