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 have noticed that the images generated by the environment are inconsistent with the other features. In fact, due to the 'channel first' convention in Pytorch, the images should be transposed using np.transpose(0,3,1,2) instead of np.transpose(0,3,2,1); and np.transpose(2,0,1) instead of np.transpose(2,1,0). Several scripts need to be corrected: (both in the robotics-rl-srl and srl_zoo)
I have noticed that the images generated by the environment are inconsistent with the other features. In fact, due to the 'channel first' convention in Pytorch, the images should be transposed using np.transpose(0,3,1,2) instead of np.transpose(0,3,2,1); and np.transpose(2,0,1) instead of np.transpose(2,1,0). Several scripts need to be corrected: (both in the robotics-rl-srl and srl_zoo)
Scripts to be corrected:
The text was updated successfully, but these errors were encountered: