Load CallHome audio segments and transcripts. Delegates to the shared HUB5 data loading logic with English prefix to extract CallHome-specific segments. Returns: Tuple[list, list]: A tuple containing: - List of AudioSegment tuples (wav_file, star
(self)
| 703 | """ |
| 704 | |
| 705 | def load(self) -> Tuple[list, list]: |
| 706 | """Load CallHome audio segments and transcripts. |
| 707 | |
| 708 | Delegates to the shared HUB5 data loading logic with English prefix |
| 709 | to extract CallHome-specific segments. |
| 710 | |
| 711 | Returns: |
| 712 | Tuple[list, list]: A tuple containing: |
| 713 | - List of AudioSegment tuples (wav_file, start_time, end_time) |
| 714 | - List of corresponding transcript strings |
| 715 | """ |
| 716 | return self._load_hub5_data("en") |
| 717 | |
| 718 | |
| 719 | class SwitchBoardLoader(BaseDatasetLoader): |
nothing calls this directly
no test coverage detected