When doing the first nemo.utils.export_onnx in the MNIST example, I get an error
RuntimeError: Exporting the operator round to ONNX opset version 9 is not supported. Support for this operator was added in version 11, try exporting with this version.
Appending opset_version=11 to the utils.py file torch.onnx.export fixed the issue for me. Is that the correct fix?