asjad18
Results
2
issues of
asjad18
optimizer_G = torch.optim.Adam( itertools.chain(G_AB.parameters(), G_BA.parameters()), lr=opt.lr, betas=(opt.b1, opt.b2) ) I am unable to understand this. Why shouldn't we use different optimizer for both generators ?
Hi, I have followed this tutorial step by step for skin segmentation task, but when I execute model.train() , I get the error mentioned in title. I am using tensorflow...