We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de54287 commit 9f67ad7Copy full SHA for 9f67ad7
trainer.py
@@ -400,8 +400,8 @@ def train(self):
400
torch.save(self.G.state_dict(), '{}/G_{}.pth'.format(self.model_dir, step))
401
torch.save(self.F.state_dict(), '{}/F_{}.pth'.format(self.model_dir, step))
402
403
- torch.save(self.D_A1.state_dict(), '{}/D_A2_{}.pth'.format(self.model_dir, step))
404
- torch.save(self.D_A2.state_dict(), '{}/D_A1_{}.pth'.format(self.model_dir, step))
+ torch.save(self.D_A1.state_dict(), '{}/D_A1_{}.pth'.format(self.model_dir, step))
+ torch.save(self.D_A2.state_dict(), '{}/D_A2_{}.pth'.format(self.model_dir, step))
405
406
torch.save(self.D_B1.state_dict(), '{}/D_B1_{}.pth'.format(self.model_dir, step))
407
torch.save(self.D_B2.state_dict(), '{}/D_B2_{}.pth'.format(self.model_dir, step))
0 commit comments