(
self, uid: str, data: Dict[str, Union[str, np.ndarray]]
)
| 1958 | |
| 1959 | @typechecked |
| 1960 | def __call__( |
| 1961 | self, uid: str, data: Dict[str, Union[str, np.ndarray]] |
| 1962 | ) -> Dict[str, np.ndarray]: |
| 1963 | |
| 1964 | data = super()._speech_process(uid, data) |
| 1965 | data = self._speech_process(uid, data) |
| 1966 | return data |
| 1967 | |
| 1968 | |
| 1969 | class SpkPreprocessor(CommonPreprocessor): |
nothing calls this directly
no test coverage detected