Hello, can you provide guidance on the following error:
OP_REQUIRES failed at einsum_op_impl.h:506 : INVALID_ARGUMENT: Expected dimension 15 at axis 1 of the input shaped [1,7,16,12] but got dimension 7
Hello, can you provide guidance on the following error:
OP_REQUIRES failed at einsum_op_impl.h:506 : INVALID_ARGUMENT: Expected dimension 15 at axis 1 of the input shaped [1,7,16,12] but got dimension 7
Hi @rocki,
This error message indicates a mismatch in tensor dimensions during an operation (likely an Einstein summation operation or another operation that uses it). The operation expects a tensor with the shape [1, 7, 16, 12] to have a dimension of size 15 at axis 1, but the tensor has a size of 7 along axis 1. In order to fix this error ensure that the input tensors to the operation are correctly shaped.
Please DM me your code if you still have problems with it.
Yep, silly mistake. Thanks.