diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-07-25 14:38:15 -0400 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-07-25 14:38:15 -0400 |
commit | 4b0c1a83bc8028983eeb4c4bda19e05954cb6ac2 (patch) | |
tree | ac196671a785482a584daa4d1853c2cd6e7777da | |
parent | a67f85dd7a3d6ca69d9adf7cbac2cc796079d223 (diff) | |
download | taxi-4b0c1a83bc8028983eeb4c4bda19e05954cb6ac2.tar.gz taxi-4b0c1a83bc8028983eeb4c4bda19e05954cb6ac2.zip |
Good learning rate for bidir_tgtcls_1_mom
-rw-r--r-- | config/bidirectional_tgtcls_1_momentum.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/bidirectional_tgtcls_1_momentum.py b/config/bidirectional_tgtcls_1_momentum.py index 5e28744..b286e0f 100644 --- a/config/bidirectional_tgtcls_1_momentum.py +++ b/config/bidirectional_tgtcls_1_momentum.py @@ -32,5 +32,7 @@ batch_sort_size = 20 max_splits = 100 -step_rule= Momentum(learning_rate=0.01, momentum=0.9) +# monitor_freq = 10000 # temporary, for finding good learning rate + +step_rule= Momentum(learning_rate=0.1, momentum=0.9) |