Fabian
Fabian
Hi Nils, Thank you for your reply. However, I am afraid your guess is not correct exactly. In the example above, `x_tr` is a 2D training ndarray with shape of...
Dear Nils, My code is as follows: ``` class TorchEsnModelTrainer(object): def pre_fit(self, dfx, y=None): x = torch.Tensor(dfx).view(dfx.shape[0], -1, dfx.shape[1]) y = torch.Tensor(y).view(y.shape[0], -1, 1) return Variable(x), Variable(y) def train(self, x_tr,...
Sorry, it is long time ago. I can not remember the details now. ------------------ Original message ------------------ From: "johnnylousas"; Sendtime: Sunday, May 5, 2019 9:58 PM To: "nschaetti/EchoTorch"; Cc: "Fajun...