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

Fix concatenating sentence parts separated with newlines #873

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

Conversation

dhgelling
Copy link

The text content of newspapers seems to be returned as paragraphs separated by two newlines. When doing nlp on this, the tokenizer sometimes thinks a sentence spans across two paragraphs, returning a sentence looking like 'first sentence\n\nsecond sentence', which means this part of the code would concatenate the words sentence and second, returning 'first sentencesecond sentence'. This change is meant to fix that, by replacing any run of multiple spaces or newlines by one space.

Another solution would be to first split on double newlines and processing the content of that separately before concatenating again, but this seemed like it would change the least

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.

None yet

1 participant