RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED: I think it might be an issue with your torch installation. Please refer to https://pytorch.org/
On your screenshots, everything seems fine. The model finished training; you should execute the next two cells to save the model
Hi, we met two problems when try the "pretrain" in examples.
model.cuda();
It's interesting that we solved it by changing it to
model.torch.cuda();
, and changed it back tomodel.cuda();
.In(7),
model.train_as_vaelp(train_loader, lr=1e-4)
This works well at first, but after more than 10 hours, it breaks down.
We tried twice times, but it couldn't work well. Is it right that the loss is negative?
We also tried to reduce the input data to 1000 molecules in "dataset_v1.csv". But it still didn't work.