diff options
Diffstat (limited to 'model.py')
| -rw-r--r-- | model.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 \ |
