Skip to content

Commit

Permalink
Fix learning rate of ctc example (apache#10790)
Browse files Browse the repository at this point in the history
The training of ctc will not converge in 100 epochs with learning rate 0.001, So change it to 0.01.
  • Loading branch information
chinakook authored and Jin Huang committed May 29, 2018
1 parent 7f4fff7 commit 2142005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/ctc/hyperparams.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self):
self._eval_epoch_size = 3000
self._batch_size = 128
self._num_epoch = 100
self._learning_rate = 0.001
self._learning_rate = 0.01
self._momentum = 0.9
self._num_label = 4
# Network hyper parameters
Expand Down

0 comments on commit 2142005

Please sign in to comment.