riots / utils /data_processor.py
gaur3009's picture
Upload 18 files
8af582d verified
def preprocess_text(text: str) -> str:
return text.strip().lower()
def postprocess_text(text: str) -> str:
return text.capitalize()