diff --git a/TrainingExtensions/torch/src/python/aimet_torch/onnx_utils.py b/TrainingExtensions/torch/src/python/aimet_torch/onnx_utils.py index 318c7782fd0..3c9a8e4ef60 100644 --- a/TrainingExtensions/torch/src/python/aimet_torch/onnx_utils.py +++ b/TrainingExtensions/torch/src/python/aimet_torch/onnx_utils.py @@ -102,6 +102,8 @@ nn.MaxPool2d: ['MaxPool'], nn.MaxPool3d: ['MaxPool'], nn.LayerNorm: ['LayerNorm'], # Not a supported op in ONNX, adding this entry for usage by Connected Graph + nn.InstanceNorm2d: ['InstanceNormalization'], + nn.InstanceNorm1d: ['InstanceNormalization'], nn.LeakyReLU: ['LeakyRelu'], nn.Linear: ['Gemm', 'MatMul'], nn.LogSoftmax: ['LogSoftmax'],