Skip to content

Commit bfd1a0f

Browse files
committed
Thesis experiments: DRRK
1 parent 773b90a commit bfd1a0f

20 files changed

Lines changed: 681 additions & 779 deletions

code/autoencoder_model/scripts/attention_autoencoder.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,10 @@ def train(BATCH_SIZE, ENC_WEIGHTS, DEC_WEIGHTS):
341341

342342
run_utilities(encoder, decoder, autoencoder, ENC_WEIGHTS, DEC_WEIGHTS)
343343

344-
NB_ITERATIONS = int(n_videos/BATCH_SIZE)
345-
# NB_ITERATIONS = 5
346-
NB_TEST_ITERATIONS = int(n_test_videos / BATCH_SIZE)
344+
# NB_ITERATIONS = int(n_videos/BATCH_SIZE)
345+
NB_ITERATIONS = 1
346+
# NB_TEST_ITERATIONS = int(n_test_videos / BATCH_SIZE)
347+
NB_TEST_ITERATIONS = 1
347348

348349
# Setup TensorBoard Callback
349350
TC = tb_callback.TensorBoard(log_dir=TF_LOG_DIR, histogram_freq=0, write_graph=False, write_images=False)

0 commit comments

Comments
 (0)