Spaces:
Sleeping
Sleeping
File size: 230 Bytes
a309487 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import re
class NLPPreprocessor:
def clean(self, text: str):
text = text.lower()
text = re.sub(r"[^a-zA-Z0-9\s]", "", text)
text = re.sub(r"\s+", " ", text)
return text.strip()
|