__init__.py 499 B

12345678910111213141516171819
  1. """
  2. Wakeword detection trainer package.
  3. This package provides specialized training capabilities for wakeword detection
  4. using RepCNN architecture and other state-of-the-art methods.
  5. """
  6. from .models import RepCNN, ImprovedRepCNN, LightweightRepCNN
  7. from .trainer import WakewordTrainer
  8. from .data import WakewordDataset, WakewordDataPreprocessor
  9. __all__ = [
  10. "RepCNN",
  11. "ImprovedRepCNN",
  12. "LightweightRepCNN",
  13. "WakewordTrainer",
  14. "WakewordDataset",
  15. "WakewordDataPreprocessor"
  16. ]