唐孟

Results 4 comments of 唐孟

Have find the suitable training code?We can have a communication. Thanks a lot!

> I had the same issue when I adopted the colorization data loader to my own MR Image translation task. When I removed the normalization in the transforms, the noise...

Hello, you can solve your problem like this. Write code in class Palette(BaseModel): self.optG = torch.optim.Adam(list(filter(lambda p: p.requires_grad, self.netG.parameters())), **optimizers[0]) self.optimizers.append(self.optG) ******************* from torch.optim.lr_scheduler import LambdaLR self.scheduler = LambdaLR(self.optG, lr_lambda=lambda...

> When I train the model with learning rate:0.0001,after several echos,I got "d_loss: nan, g_loss: nan" ,how can I deal with this situation? > Thanks a lot! I meet the...