[/usr/local/lib/python3.10/dist-packages/galore_torch/galore_projector.py](https://localhost:8080/#) in get_orthogonal_matrix(self, weights, rank, type)
85 #make the smaller matrix always to be orthogonal matrix
86 if type=='right':
---> 87 A = U[:, :rank] @ torch.diag(s[:rank])
88 B = Vh[:rank, :]
89
RuntimeError: diag(): Supports 1D or 2D tensors. Got 3D
As I understand it, galore is not able to work with models that work with 3D inputs/outputs?
As I understand it, galore is not able to work with models that work with 3D inputs/outputs?