You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wanted behaviour :
Run the notebook following given instructions
Actual Behaviour :
In model_definition['AudioToMelSpectrogramPreprocessor']['dither'] = 0 KeyError: 'AudioToMelSpectrogramPreprocessor'
There is no field AudioToMelSpectrogramPreprocessor in the yaml, thus all the subfields leads to error (same for model_definition['AudioToMelSpectrogramPreprocessor']['features'], model_definition['AudioToMelSpectrogramPreprocessor']['pad_to'])
The text was updated successfully, but these errors were encountered:
ierezell
changed the title
KeyError in 2_Online_ASR_Microphone_Demo.ipynb
KeyError : No AudioToMelSpectrogramPreprocessor in 2_Online_ASR_Microphone_Demo.ipynb
Apr 21, 2020
Looks like the checkpoint has an older version of the quartznet15x5 config, and the class name has changed. Either one of the following should fix the error:
Use the config at examples/asr/configs/quartznet15x5.yaml, or
Change the key AudioPreprocessing to AudioToMelSpectrogramPreprocessor in the YAML file you are currently using.
Wanted behaviour :
Run the notebook following given instructions
Actual Behaviour :
In
model_definition['AudioToMelSpectrogramPreprocessor']['dither'] = 0
KeyError: 'AudioToMelSpectrogramPreprocessor'
There is no field
AudioToMelSpectrogramPreprocessor
in the yaml, thus all the subfields leads to error (same formodel_definition['AudioToMelSpectrogramPreprocessor']['features']
,model_definition['AudioToMelSpectrogramPreprocessor']['pad_to']
)the checkpoints are available from NGC: https://ngc.nvidia.com/catalog/models/nvidia:quartznet15x5
(tried with other files as well with no success)
The text was updated successfully, but these errors were encountered: