Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update corenlp.py #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update corenlp.py #54

wants to merge 1 commit into from

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