Convasr_to_enemo.py is throwing error

I am trying to convert Nemo to jarvis by following up this docs
https://docs.nvidia.com/deeplearning/jarvis/user-guide/docs/model-overview.html?highlight=enemo#nemo-to-jarvis

When invoking the convasr_to_enemo.py, I am getting error

./model_config.yaml not found

But I am able to see model_config.yaml inside the QuartzNet15x5.nemo (I renamed QuartzNet15x5.tar)

cmd:
python convasr_to_enemo.py --nemo_file=./QuartzNet15x5.nemo --onnx_file=./quartz.onnx --enemo_file=./quartznet_asr.enemo

error:

Traceback (most recent call last):
File “jarvis.py”, line 74, in
main(
File “jarvis.py”, line 64, in main
archive.extract(‘./model_config.yaml’)
File “/usr/lib/python3.8/tarfile.py”, line 2058, in extract
tarinfo = self.getmember(member)
File “/usr/lib/python3.8/tarfile.py”, line 1780, in getmember
raise KeyError(“filename %r not found” % name)
KeyError: “filename ‘./model_config.yaml’ not found”

Hi @bjoish,

Can you try using original model naming convention "QuartzNet15x5Base-En"

It seems pretrained model is downloaded as per the mapping defined in the below link:

Thanks