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
If I understand correctly np.roll with axis=None will first flatten the array and then roll.
Is that the intention? In order to shift the training examples to the desired training position it seems to me that np.roll(..., axis=0) would be the desired behaviour (in order to roll complete rows of the array).
Thanks :)
Johannes
The text was updated successfully, but these errors were encountered:
Hi Simon,
I came across a line of code that made me think:
UnFlow/src/e2eflow/core/input.py
Lines 178 to 179 in ddb4bd3
If I understand correctly np.roll with axis=None will first flatten the array and then roll.
Is that the intention? In order to shift the training examples to the desired training position it seems to me that np.roll(..., axis=0) would be the desired behaviour (in order to roll complete rows of the array).
Thanks :)
Johannes
The text was updated successfully, but these errors were encountered: