Open yitao416 opened 1 year ago
In the description of dcgan_module.py, it says we can use it on cifar10 as
# cifar10 python dcgan_module.py --gpus 1 --dataset cifar10 --image_channels 3
But in the argument parser, it only has two choices:
parser.add_argument("--dataset", default="mnist", type=str, choices=["lsun", "mnist"])
Is this a typo? Or the CIFAR10 addition is down the road.
@Borda shall I update the dcgan description or add the support for CIFAR10 to the module?
update the dcgan description or add the support for CIFAR10 to the module?
that would be great :purple_heart:
🐛 Bug
In the description of dcgan_module.py, it says we can use it on cifar10 as
But in the argument parser, it only has two choices:
Is this a typo? Or the CIFAR10 addition is down the road.