diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-14 22:57:10 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-14 22:57:10 +0200 |
| commit | 4d35f463da308f240b64b30dfe4f38dc0c15a486 (patch) | |
| tree | c9551abbd1c32c381b79086d5fa72b9ddcdf08a7 /model.py | |
| parent | d3ab3b742e8d1cc67af23a572679395ab35e3760 (diff) | |
okayyyyyyy
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 \ |
