(
self, uid: str, data: Dict[str, Union[str, np.ndarray]]
)
| 753 | |
| 754 | @typechecked |
| 755 | def __call__( |
| 756 | self, uid: str, data: Dict[str, Union[str, np.ndarray]] |
| 757 | ) -> Dict[str, np.ndarray]: |
| 758 | |
| 759 | data = self._speech_process(data) |
| 760 | data = self._text_process(data) |
| 761 | return data |
| 762 | |
| 763 | |
| 764 | class MutliTokenizerCommonPreprocessor(CommonPreprocessor): |
nothing calls this directly
no test coverage detected