issues
search
sony
/
nnabla
Neural Network Libraries
https://nnabla.org/
Apache License 2.0
2.73k
stars
334
forks
source link
Fix Slice, MatMul, and ConstantOfShape in ONNX importer
#1223
Closed
TomonobuTsujikawa
closed
1 year ago
TomonobuTsujikawa
commented
1 year ago
This PR fixes the following issues in ONNX importer.
normalize_shape()
If its argument type is RepeatedScalarContainer, returned value is not normalized.
Slice
output shape in Slice conversion may become negative.
MatMul
The existing implementation only supports the case that input tensors have the same number of dimensions.
This PR implements full support of ONNX MatMul.
ConstantOfShape
The existing implementation only does not support raw_data in TensorProto.
This PR fixes the following issues in ONNX importer.