| 12345678910111213141516171819 |
- """
- Wakeword detection trainer package.
- This package provides specialized training capabilities for wakeword detection
- using RepCNN architecture and other state-of-the-art methods.
- """
- from .models import RepCNN, ImprovedRepCNN, LightweightRepCNN
- from .trainer import WakewordTrainer
- from .data import WakewordDataset, WakewordDataPreprocessor
- __all__ = [
- "RepCNN",
- "ImprovedRepCNN",
- "LightweightRepCNN",
- "WakewordTrainer",
- "WakewordDataset",
- "WakewordDataPreprocessor"
- ]
|