C = torch.cat((A,B),1)
shape of tensors:
A is (1, 128, 128, 256)
B is (1, 1, 128, 256)
Expected C
value is (1, 129, 128, 256)
This code is working on pytorch, but while converting to core-ml it gives me below error:
"Error while converting op of type: {}. Error message: {}\n".format(node.op_type, err_message, )
TypeError: Error while converting op of type: Concat. Error message: unable to translate constant array shape to CoreML shape"