(hparams)
| 18 | |
| 19 | |
| 20 | def get_hop_size(hparams): |
| 21 | hop_size = hparams['hop_size'] |
| 22 | if hop_size is None: |
| 23 | assert hparams['frame_shift_ms'] is not None |
| 24 | hop_size = int(hparams['frame_shift_ms'] / 1000 * hparams['audio_sample_rate']) |
| 25 | return hop_size |
| 26 | |
| 27 | |
| 28 | ########################################################################################### |