summaryrefslogtreecommitdiff
path: root/lstm.py
diff options
context:
space:
mode:
authorAlex Auvolat <alex.auvolat@ens.fr>2015-06-17 14:58:20 -0400
committerAlex Auvolat <alex.auvolat@ens.fr>2015-06-17 14:58:20 -0400
commit701c407b8c87a9270b31d34ac54e683341be661e (patch)
tree1ef80f0859a7f592d44e9f1c4010da02ee68fb10 /lstm.py
parente91e14e894196642532c0b7be50b01c1354ad702 (diff)
downloadtext-rnn-701c407b8c87a9270b31d34ac54e683341be661e.tar.gz
text-rnn-701c407b8c87a9270b31d34ac54e683341be661e.zip
xoxo
Diffstat (limited to 'lstm.py')
-rw-r--r--lstm.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstm.py b/lstm.py
index dbe46dc..1750d58 100644
--- a/lstm.py
+++ b/lstm.py
@@ -47,11 +47,12 @@ param_desc = '%s-%sIH,%sHO-n%s-d%s-l1r%s-%dx%d(%d)-%s' % (
)
save_freq = 5
+on_irc = True
# parameters for sample generation
sample_len = 1000
sample_temperature = 0.7 #0.5
-sample_freq = 10
+sample_freq = None
if step_rule == 'rmsprop':
step_rule = RMSProp()