(
self, uid: str, data: Dict[str, Union[str, np.ndarray]]
)
| 1505 | |
| 1506 | @typechecked |
| 1507 | def __call__( |
| 1508 | self, uid: str, data: Dict[str, Union[str, np.ndarray]] |
| 1509 | ) -> Dict[str, np.ndarray]: |
| 1510 | |
| 1511 | data = self._speech_process(uid, data) |
| 1512 | data = self._text_process(data) |
| 1513 | return data |
| 1514 | |
| 1515 | |
| 1516 | class SVSPreprocessor(AbsPreprocessor): |
nothing calls this directly
no test coverage detected