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
parser.add_argument('--multi_gpu', action='store_true', help='Flag whether to use multiple GPUs.')
27
+
# Select GPU device
28
+
parser.add_argument('--gpu_device', type=int, default=None, help='ID of a GPU to use when multiple GPUs are available.')
27
29
# Data directory
28
-
parser.add_argument('--data_path', type=str, default=DATA_PATH, help='Flag whether to use multiple GPUs.')
30
+
parser.add_argument('--data_path', type=str, default=DATA_PATH, help='Path to the MNIST or CIFAR dataset. Alternatively you can set the path as an environmental variable $data.')
0 commit comments