概述
我正在遵循this教程并尝试运行脚本的以下部分。我使用的是python3.7和spyder3.3.4。在ap = argparse.ArgumentParser()
ap.add_argument("-d", "--dataset", required=True,
help="path to input dataset (i.e., directory of images)")
ap.add_argument("-m", "--model", required=True,
help="path to output model")
ap.add_argument("-l", "--labelbin", required=True,
help="path to output label binarizer")
ap.add_argument("-p", "--plot", type=str, default="plot.png",
help="path to output accuracy/loss plot")
args = vars(ap.parse_args())
我尝试过按文件运行>;配置,并按照this post and和{a3}的建议输入参数。在command line options: path1, path2, path3, path4
我为上面的参数填写了适当的路径,然后运行了脚本,但还是按照下面的错误进行操作。在usage: train.py [-h] -d DATASET -m MODEL -l LABELBIN [-p PLOT]
train.py: error: the following arguments are required: -d/--dataset,
-m/--model, -l/--labelbin An exception has occurred, use %tb to see the full traceback.
SystemExit: 2
如何修复此错误以正确运行脚本并在spyder中传递参数?在
最后
以上就是清新学姐为你收集整理的spyder python教程_如何在python(spyder)中解析参数?的全部内容,希望文章能够帮你解决spyder python教程_如何在python(spyder)中解析参数?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复