Open wangguanan opened 7 years ago
When I run gan_cifar_resnet.py with NORMALIZATION_D=True(my tensorflow version is 1.2.0), an error occurred No gradient defined for operation 'gradients/FusedBatchNorm_62_grad/FusedBatchNormGrad' as below:
gan_cifar_resnet.py
NORMALIZATION_D=True
No gradient defined for operation 'gradients/FusedBatchNorm_62_grad/FusedBatchNormGrad'
Can you tell me how to solve it? Thanks!
Changing fused to False solves the problem.
fused
False
When I run
gan_cifar_resnet.py
withNORMALIZATION_D=True
(my tensorflow version is 1.2.0), an error occurredNo gradient defined for operation 'gradients/FusedBatchNorm_62_grad/FusedBatchNormGrad'
as below:Can you tell me how to solve it? Thanks!