From 9b9bec5cf4d89db03623d618eb6b28fa8e01893d Mon Sep 17 00:00:00 2001 From: Jiabin Yang Date: Thu, 1 Aug 2019 21:42:45 +0800 Subject: [PATCH] Fix dygraph transformer (#3000) * using new load api * fix transformer crashed when dropout seed get None --- dygraph/transformer/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph/transformer/train.py b/dygraph/transformer/train.py index 658c082a..42a34d32 100644 --- a/dygraph/transformer/train.py +++ b/dygraph/transformer/train.py @@ -110,7 +110,7 @@ class ModelHyperParams(object): # to process after each sub-layer postprocess_cmd = "da" # dropout + residual connection # random seed used in dropout for CE. - dropout_seed = None + dropout_seed = 0 # the flag indicating whether to share embedding and softmax weights. # vocabularies in source and target should be same for weight sharing. weight_sharing = False -- GitLab