updated progan

This commit is contained in:
Aladdin Persson
2021-03-21 12:19:18 +01:00
parent c72d1d6a31
commit 59b1de7bfe
5 changed files with 29 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ CHECKPOINT_GEN = "generator.pth"
CHECKPOINT_CRITIC = "critic.pth"
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
SAVE_MODEL = True
LOAD_MODEL = True
LOAD_MODEL = False
LEARNING_RATE = 1e-3
BATCH_SIZES = [32, 32, 32, 16, 16, 16, 16, 8, 4]
CHANNELS_IMG = 3