Spaces:
Sleeping
Sleeping
""" | |
Content Cleaning Implementations. | |
This package contains direct implementations of content cleaning strategies. | |
All cleaners implement the ContentCleaner abstract base class and use | |
pure algorithms for text normalization and cleaning. | |
Available Cleaners: | |
- TechnicalContentCleaner: Technical document cleaning and normalization | |
- Future: LanguageSpecificCleaner, PIIDetectionCleaner | |
""" | |
from .technical import TechnicalContentCleaner | |
__all__ = ['TechnicalContentCleaner'] |