AgeProgression
AgeProgression copied to clipboard
RuntimeError: Attempting to deserialize object on a CUDA device but torch.cuda.is_available() is False. If you are running on a CPU-only machine, please use torch.load with map_location='cpu' to map your storages...
Has anyone ever encountered with this error? I'd appreciate it so much if you have any solutions. RuntimeError: one of the variables needed for gradient computation has been modified by...
Author only offered the pretrained model with 100, but not 50. So has someone the pretrained model with 50?
reg = l1_loss(generated[:, :, :, :-1], generated[:, :, :, 1:]) \ + l1_loss(generated[:, :, :-1, :], generated[:, :, 1:, :]) # reg = ( # torch.sum(torch.abs(generated[:, :, :, :-1] -...
If i run the aging game notebook In the second cell you have this code: load_path = {50: r".\trained_models\2018_09_08\01_44\epoch76", 100: r"C:\Users\Mattan\Downloads\epoch_200_no_tf"}[consts.NUM_Z_CHANNELS] If i run this on a ubuntu machine where...
I have tested your pretrained model, but the results are not upto the mark. Are there any additional things to be added to this.
hey @mattans: -kwargs syntax fix, the code is also working absolutely fine with py-3.5 and up to torch-1.0.0(latest stable). 32 and 64 didn't work as batch size for me, the...
Hi, when I run this code I got an ValueError, shown as below: > Traceback (most recent call last): File "main.py", line 129, in models_saving=args.models_saving File "/home/yang/Documents/code/CAAE/pytorch/model.py", line 417, in...
hello when i run main.py there is a problem in utils line 220 in plot if self.graphic: AttributeError: 'LossTracker' object has no attribute 'graphic' what should I do ? thank...