第一种情况:第一个参数不能重复
def add_arguments(self, parser):
parser.add_argument('-d', '--from-date', type=str, help='Some help text')
parser.add_argument('-d', '--to-date', type=str, help='Some help text')
parser.add_argument('-d', '--from-type', type=str, help='Some help text')
parser.add_argument('-d', '--until-type', type=str, help='Some help text')
这是错误的,改正如下:
def add_arguments(self, parser):
parser.add_argument('-f', '--from-date', type=str, help='Some help text')
parser.add_argument('-t', '--to-date', type=str, help='Some help text')
parser.add_argument('-p', '--from-type', type=str, help='Some help text')
parser.add_argument('-u', '--until-type', type=str, help='Some help text')
第二种错误:第二个参数前面没有加--,跟设置的传参没有对应
第三种错误:参数没有加deault
第四种错误:没有加类型,str, int,等类型。
第五种错误:没有这个参数
第六种错误:
parser = argparse.ArgumentParser()
parser.add_argument("--input_dir", help="path to folder containing images")
parser.add_argument("--mode", required=True, choices=["train", "test", "export"])
parser.add_argument("--output_dir",required=True, help="where to put output files")
解决办法:注释掉required=True这个参数,添加default默认cfg路径,就可以摆脱指令右键run
示例:
parser.add_argument("--name", default = "cifar10-100_500", type = str,
help="Name of this run. Used for monitoring.")
parser.add_argument("--dataset", choices=["cifar10", "cifar100"], default="cifar10",
help="Which downstream task.")
parser.add_argument("--model_type", choices=["ViT-B_16", "ViT-B_32", "ViT-L_16",
"ViT-L_32", "ViT-H_14", "R50-ViT-B_16"],
default="ViT-B_16",
help="Which variant to use.")
parser.add_argument("--pretrained_dir", type=str, default="checkpoint/ViT-B_16.npz",
help="Where to search for pretrained ViT models.")
parser.add_argument("--output_dir", default="output", type=str,
help="The output directory where checkpoints will be written.")
parser.add_argument("--img_size", default=224, type=int,
help="Resolution size")
launch.json:
"args": [
"--name", "cifar10-100_500",
"--dataset", "cifar10",
"--model_type", "ViT-B_16",
"--pretrained_dir", "checkpoint/ViT-B_16.npz"
]