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
/torchesn/nn/echo_state_network.py", line 237, in fit
W = torch.linalg.solve(self.XTy,
RuntimeError: linalg.solve: A must be batches of square matrices, but they are 501 by 10 matrices
The text was updated successfully, but these errors were encountered:
Changing linalg.solve() to cholesky_solve() Doesn't solve the problem for me/torchesn/nn/echo_state_network.py", line 239, in fit self.XTX.size(0), device=self.XTX.device))[0].t() RuntimeError: linalg.solve: A must be batches of square matrices, but they are 10 by 501 matrices
Changing linalg.solve() to cholesky_solve() Doesn't solve the problem for me/torchesn/nn/echo_state_network.py", line 239, in fit self.XTX.size(0), device=self.XTX.device))[0].t() RuntimeError: linalg.solve: A must be batches of square matrices, but they are 10 by 501 matrices
Running the example/mnist.py I get:
The text was updated successfully, but these errors were encountered: