The error states that the dimensions of the matrices you are trying to concatenate are different along axis 1. The array at position 0 has size 13 and the array at position 1 has size 15. To use the np.r_ function, the dimensions along axes except the concatenation axis must be identical.
I attempted to brute force resize the matrices to ensure that the dimensions of the matrices were compatible. However, I was unsuccessful.
The error states that the dimensions of the matrices you are trying to concatenate are different along axis 1. The array at position 0 has size 13 and the array at position 1 has size 15. To use the np.r_ function, the dimensions along axes except the concatenation axis must be identical.
I attempted to brute force resize the matrices to ensure that the dimensions of the matrices were compatible. However, I was unsuccessful.