diff --git a/ML/Pytorch/GANs/Pix2Pix/__pycache__/config.cpython-38.pyc b/ML/Pytorch/GANs/Pix2Pix/__pycache__/config.cpython-38.pyc new file mode 100644 index 0000000..7f69f65 Binary files /dev/null and b/ML/Pytorch/GANs/Pix2Pix/__pycache__/config.cpython-38.pyc differ diff --git a/ML/Pytorch/GANs/Pix2Pix/__pycache__/dataset.cpython-38.pyc b/ML/Pytorch/GANs/Pix2Pix/__pycache__/dataset.cpython-38.pyc new file mode 100644 index 0000000..5447aac Binary files /dev/null and b/ML/Pytorch/GANs/Pix2Pix/__pycache__/dataset.cpython-38.pyc differ diff --git a/ML/Pytorch/GANs/Pix2Pix/__pycache__/discriminator_model.cpython-38.pyc b/ML/Pytorch/GANs/Pix2Pix/__pycache__/discriminator_model.cpython-38.pyc new file mode 100644 index 0000000..e6ca817 Binary files /dev/null and b/ML/Pytorch/GANs/Pix2Pix/__pycache__/discriminator_model.cpython-38.pyc differ diff --git a/ML/Pytorch/GANs/Pix2Pix/__pycache__/generator_model.cpython-38.pyc b/ML/Pytorch/GANs/Pix2Pix/__pycache__/generator_model.cpython-38.pyc new file mode 100644 index 0000000..d9da67f Binary files /dev/null and b/ML/Pytorch/GANs/Pix2Pix/__pycache__/generator_model.cpython-38.pyc differ diff --git a/ML/Pytorch/GANs/Pix2Pix/__pycache__/utils.cpython-38.pyc b/ML/Pytorch/GANs/Pix2Pix/__pycache__/utils.cpython-38.pyc new file mode 100644 index 0000000..6b060c5 Binary files /dev/null and b/ML/Pytorch/GANs/Pix2Pix/__pycache__/utils.cpython-38.pyc differ diff --git a/ML/Pytorch/GANs/Pix2Pix/config.py b/ML/Pytorch/GANs/Pix2Pix/config.py index 870a3d0..334de9a 100644 --- a/ML/Pytorch/GANs/Pix2Pix/config.py +++ b/ML/Pytorch/GANs/Pix2Pix/config.py @@ -13,8 +13,8 @@ CHANNELS_IMG = 3 L1_LAMBDA = 100 LAMBDA_GP = 10 NUM_EPOCHS = 500 -LOAD_MODEL = True -SAVE_MODEL = True +LOAD_MODEL = False +SAVE_MODEL = False CHECKPOINT_DISC = "disc.pth.tar" CHECKPOINT_GEN = "gen.pth.tar"