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
I'm trying to make the equivariance_plot script work on my own weather data of size (721, 1440).
When it runs the so3_rotation function I have the following error:
After trying to debug it, I have found that the issue is with the Jd matrix of size 151, defined in lie_learn when calling the line 55 in s2cnn/soft/so3_rotation.py
I'm trying to make the
equivariance_plot
script work on my own weather data of size(721, 1440)
.When it runs the so3_rotation function I have the following error:
After trying to debug it, I have found that the issue is with the
Jd
matrix of size 151, defined inlie_learn
when calling the line 55 ins2cnn/soft/so3_rotation.py
b is set as
b = x.size()[-1] // 2
so720
in my casethe
winger_D_matrix
calls therot_mat
function which usesJd[l]
, but since Jd is size151
, it throws the error.Is there a way to redefine the Jd matrix or do I need to use a different function?
The text was updated successfully, but these errors were encountered: