Part Number: TDA4VMXEVM
Goodmorning,
I'm a bit confused on the padding strategies used for input and output tensors on a DNN model converted with TIDL.
I have a model that has these input and output tensors:
- Input Tensor => Shape (NCHW) 1x3x64x192, Paddings L=1, T=1, R=0, B=2, Ch=0
- Output Tensor 1 => Shape (NCHW) 1x2x64x192, Paddings L=1, T=1, R=0, B=4, Ch=0
- Output Tensor 2 => Shape (NCHW) 1x4x64x192, Paddings L=1, T=1, R=0, B=4, Ch=0
What is not so clear to me is why the Bottom padding changes even if the height and width of the feature map is the same and, eventually, it's relationship with the number of channels.
What are the rules for paddings?
Avoiding paddings by changing in/out tensors shapes (where possible) could be useful to optimize execution?
Thanks,
Federico