Other Parts Discussed in Thread: AM68
Tool/software:
Hi,
I'm trying to convert an onnx model with four different inputs. I created a binary file with inputs for calibration. These are the parameters I'm using:
modelType = 2
inputNetFile=model.onnx
numFeatureBits = 16
numParamBits = 16
calibrationOption = 0
addDataConvertToNet = 1
numFrames = 1
inNumChannels = 1 1 1 1
inHeight = 128 128 1 1
inWidth = 128 128 24 32
rawDataInElementType = 6 6 6 6
inElementType = 6 6 6 6
inFileFormat=1
inData=input.bin
inDataNamesList = input1 input2 input3 input4
After conversion, I get a mismatch in the input dimensions. Instead of having the dimensions:
input1 [1x128x128]
input2 [1x128x128]
input3 [1x1x24]
input4 [1x1x32]
I get:
input1 [1x128x128]
input2 [1x1x32]
input3 [1x128x128]
input4 [1x1x24]
Is there something missing?
Thanks,
Guy