Created by: chenwhql
PR types
Bug fixes
PR changes
Others
Describe
Fix test_imperative_se_resnext random failed
经过和框架内同样测试se_resnext但不会随机挂的单测对比,猜测可能是以下原因导致:
- 在偶然情况下,网络计算出的结果out直接使用可能会出nan,需要增加softmax处理一下
此外, CUDNN计算数值不稳定,使用新方式fluid.set_flags({'FLAGS_cudnn_deterministic': True})配置更加合理
已进行相应完善