You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 text was updated successfully, but these errors were encountered: