Spaces:
Running
on
Zero
Running
on
Zero
File size: 436 Bytes
cef1afc |
1 2 3 4 5 6 7 8 9 10 11 |
import torch
def append_dims(x: torch.Tensor, target_dims: int) -> torch.Tensor:
"""Appends dimensions to the end of a tensor until it has target_dims dimensions."""
dims_to_append = target_dims - x.ndim
if dims_to_append < 0:
raise ValueError(f"input has {x.ndim} dims but target_dims is {target_dims}, which is less")
elif dims_to_append == 0:
return x
return x[(...,) + (None,) * dims_to_append]
|