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
Would it make sense to add an rearrange operator for rearanging of axes and shapes?
The usages would be
move axes the the position a neural network would expect them
adapt axes between different operators
the difficulty would be how the handle 'a b ... -> (a b) ...' in the transpose.
I would suggest, that we require the einops axes_lengths to include enough information for both forward and transposed application.
So, in this example. either the size of a or b must be specified, otherwise the adjoint will fail (even though the forward operation does not need that information)
The text was updated successfully, but these errors were encountered:
Would it make sense to add an rearrange operator for rearanging of axes and shapes?
The usages would be
the difficulty would be how the handle
'a b ... -> (a b) ...'
in the transpose.I would suggest, that we require the einops
axes_lengths
to include enough information for both forward and transposed application.So, in this example. either the size of a or b must be specified, otherwise the adjoint will fail (even though the forward operation does not need that information)
The text was updated successfully, but these errors were encountered: