Fix dropout in nn.py
padding_in_crf
lvmengsi 6 years ago committed by GitHub
parent 4da1c4f15d
commit 5d9df8c8c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1558,7 +1558,7 @@ def dropout(x,
'dropout_prob': dropout_prob, 'dropout_prob': dropout_prob,
'is_test': is_test, 'is_test': is_test,
'fix_seed': seed is not None, 'fix_seed': seed is not None,
'seed': seed, 'seed': seed if seed is not None else 0,
'dropout_implementation': dropout_implementation, 'dropout_implementation': dropout_implementation,
}) })
return out return out

Loading…
Cancel
Save