You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In computing the testing loss for the autoencoder, you reuse the training set
# test on holdout
loss = []
for batch, test_x in tqdm(
zip(range(N_TRAIN_BATCHES), train_dataset), total=N_TRAIN_BATCHES # Why is this using training again?
):
In computing the testing loss for the autoencoder, you reuse the training set