"vscode:/vscode.git/clone" did not exist on "501d17f6933087cea392927626b059e223b95c35"
Unverified Commit 047bcef3 authored by Alexander Gorban's avatar Alexander Gorban Committed by GitHub
Browse files

Merge pull request #3855 from rerngvit/fix/attention_ocr_momentum_flag

Fix momentum value flag from string => float
parents 02d40e9f ccb46317
......@@ -73,7 +73,7 @@ def define():
flags.DEFINE_string('optimizer', 'momentum',
'the optimizer to use')
flags.DEFINE_string('momentum', 0.9,
flags.DEFINE_float('momentum', 0.9,
'momentum value for the momentum optimizer if used')
flags.DEFINE_bool('use_augment_input', True,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment