Is your feature request related to a problem? Please describe.
It's frustrating to keep having to install einops, which I use so often. It's a popular module that lets you rearrange tensors by taking as input the starting shape and ending shape, then automatically applying the necessary transformations.
For example:
from einops import rearrange
output_tensor = rearrange(input_tensor, 't b c -> b c t')
Is your feature request related to a problem? Please describe.
It's frustrating to keep having to install
einops
, which I use so often. It's a popular module that lets you rearrange tensors by taking as input the starting shape and ending shape, then automatically applying the necessary transformations.For example:
Describe the solution you'd like
Include the
einops
package by default.