summaryrefslogtreecommitdiff
path: root/options
diff options
context:
space:
mode:
authorJun-Yan Zhu <junyanz@users.noreply.github.com>2017-06-29 06:25:06 -0700
committerGitHub <noreply@github.com>2017-06-29 06:25:06 -0700
commit11690eaffc7dcdc0f64267263f5d7a3b4fc735cf (patch)
tree5dcdc037baae798337f725e9e4123b8e8fd484b5 /options
parentc9f390499155d9047693dda1abd2de39efd161d3 (diff)
Update base_options.py
Diffstat (limited to 'options')
-rw-r--r--options/base_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/base_options.py b/options/base_options.py
index 704aaef..909136f 100644
--- a/options/base_options.py
+++ b/options/base_options.py
@@ -20,7 +20,7 @@ class BaseOptions():
self.parser.add_argument('--which_model_netD', type=str, default='basic', help='selects model to use for netD')
self.parser.add_argument('--which_model_netG', type=str, default='resnet_9blocks', help='selects model to use for netG')
self.parser.add_argument('--n_layers_D', type=int, default=3, help='only used if which_model_netD==n_layers')
- self.parser.add_argument('--gpu_ids', type=str, default='0', help='gpu ids: e.g. 0 0,1,2, 0,2')
+ self.parser.add_argument('--gpu_ids', type=str, default='0', help='gpu ids: e.g. 0 0,1,2, 0,2. use -1 for CPU')
self.parser.add_argument('--name', type=str, default='experiment_name', help='name of the experiment. It decides where to store samples and models')
self.parser.add_argument('--dataset_mode', type=str, default='unaligned', help='chooses how datasets are loaded. [unaligned | aligned | single]')
self.parser.add_argument('--model', type=str, default='cycle_gan',