Improve get_sentences

This commit is contained in:
Andras Schmelczer 2022-06-26 12:08:19 +02:00
parent 75148b8954
commit 5319a46ff7
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
5 changed files with 77 additions and 21 deletions

View file

@ -1,10 +1,10 @@
from .clean import clean
from .parallel_map import parallel_map
from .unique import unique
from .config_file import ConfigFile, ParseError
from .evaluate_ranking import evaluate_ranking
from .get_sentences import get_sentences
from .language import english_name_of_language, is_english, predict_language
from .lemmatize import lemmatize
from .logger import get_logger
from .evaluate_ranking import evaluate_ranking
from .match_names import match_names
from .parallel_map import parallel_map
from .unique import unique

View file

@ -1,30 +1,42 @@
from typing import List, cast
import re
from string import punctuation
from typing import List
from segtok.segmenter import split_multi
from syntok.segmenter import segment
from syntok.tokenizer import Tokenizer
from .data import sentence_ending_punctuations
punctuations_pattern = re.compile(f"\\s*[{re.escape(punctuation)}]+\\s*")
def get_sentences(
text: str, ignore_partial: bool = False, true_case: bool = False
text: str,
ignore_partial: bool = False,
true_case: bool = False,
remove_punctuation: bool = False,
) -> List[str]:
if text.strip() == "":
return []
tokenizer = Tokenizer(
emit_hyphen_or_underscore_sep=True, replace_not_contraction=False
)
token_stream = tokenizer.tokenize(text)
possible_sentences = [
cast(str, s).strip() for s in split_multi(text) if cast(str, s).strip()
def process(sentence: str) -> str:
if true_case:
sentence = sentence[0].lower() + sentence[1:] # very crude method
if remove_punctuation:
sentence = re.sub(punctuations_pattern, " ", sentence)
return sentence.strip()
sentences = [
process(tokenizer.to_text(sentence)) for sentence in segment(token_stream)
]
if ignore_partial:
possible_sentences = [
s
for s in possible_sentences
if s[0].isupper() and s[-1] in sentence_ending_punctuations
sentences = [
sentence
for sentence in sentences
if sentence[0].isupper() and sentence[-1] in sentence_ending_punctuations
]
if true_case:
possible_sentences = [
s[0].lower() + s[1:] for s in possible_sentences # very crude method
]
return possible_sentences
return sentences