Spaces:
Sleeping
Sleeping
File size: 478 Bytes
5e1a30c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
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'] |