summaryrefslogtreecommitdiff
path: root/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'model.py')
-rw-r--r--model.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/model.py b/model.py
index 92ad460..6435eb4 100644
--- a/model.py
+++ b/model.py
@@ -369,6 +369,7 @@ class PrimedGenerator(Runner):
# but maybe we want to generate the subsequence bottom_frame_size length
# and then draw from that, although this will really emphasize the recursion
def get_sub_sequence(i, n):
+ print("get subsequence {} {}".format(i, n))
sub_sequence_a = sequences[:, i-n : i] # generated
sub_sequence_b = out_sequences[:, i-n : i] # recursive
tmp_sub_sequence = tmp_sequences[:, i-n : i] # tmp/output
@@ -384,7 +385,7 @@ class PrimedGenerator(Runner):
print("ENTERING LOOP....")
for i in range(self.model.lookback, self.model.lookback + seq_len):
- if (i % 1000) == 0:
+ if (i % 100) == 0:
print("{}...".format(i))
for (tier_index, rnn) in \