Skip to content

Conversation

@chunksong
Copy link

Now there is latest version of Stanford Core NLP(v.3.8.0). There is simple change in this module, so this change can be work for new version.

The version before, there was no newline between "Word part",

e.g.)
what is phone?
Sentence #1 (4 tokens):
what is phone?
[Text=what CharacterOffsetBegin=0 CharacterOffsetEnd=4 PartOfSpeech=WP Lemma=what NamedEntityTag=O] [Text=is CharacterOffsetBegin=5 CharacterOffsetEnd=7 PartOfSpeech=VBZ Lemma=be NamedEntityTag=O] [Text=phone CharacterOffsetBegin=8 CharacterOffsetEnd=13 PartOfSpeech=NN Lemma=phone NamedEntityTag=O] [Text=? CharacterOffsetBegin=13 CharacterOffsetEnd=14 PartOfSpeech=. Lemma=? NamedEntityTag=O]
NLP>

However the output of new version has new line in the end of line, so until update module can get just a first line of "Word part".

e.g.)
what is phone?
Sentence #1 (4 tokens):
what is phone?
[Text=what CharacterOffsetBegin=0 CharacterOffsetEnd=4 PartOfSpeech=WP Lemma=what NamedEntityTag=O]
[Text=is CharacterOffsetBegin=5 CharacterOffsetEnd=7 PartOfSpeech=VBZ Lemma=be NamedEntityTag=O]
[Text=phone CharacterOffsetBegin=8 CharacterOffsetEnd=13 PartOfSpeech=NN Lemma=phone NamedEntityTag=O]
[Text=? CharacterOffsetBegin=13 CharacterOffsetEnd=14 PartOfSpeech=. Lemma=? NamedEntityTag=O]
NLP>

Now there is latest version of Stanford Core NLP(3.8.0). There is simple change in this module, so this  change can be work for new version.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant