Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix learning rate of ctc example (#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 szha committed May 3, 2018
1 parent 9dce757 commit 20bbef5
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 20bbef5

Please sign in to comment.