(y, hparams)
| 27 | |
| 28 | ########################################################################################### |
| 29 | def _stft(y, hparams): |
| 30 | return librosa.stft(y=y, n_fft=hparams['fft_size'], hop_length=get_hop_size(hparams), |
| 31 | win_length=hparams['win_size'], pad_mode='constant') |
| 32 | |
| 33 | |
| 34 | def _istft(y, hparams): |
nothing calls this directly
no test coverage detected