赞
踩
假如程序中有一段类似代码:
ap2 = argparse.ArgumentParser()
ap2.add_argument("-d", "--dataset", required=True,
help="path to input dataset of images")
ap2.add_argument("-m", "--model", required=True,
help="path to output trained model")
ap2.add_argument("-l", "--label-bin", required=True,
help="path to output label binarizer")
ap2.add_argument("-p", "--plot", required=True,
help="path to output accuracy/loss plot")
args = vars(ap2.parse_args())
那么为了程序能够运行,最好是配置运行时候的参数,步骤为:
在Pycharm环境找到“Run”菜单下的“Edit Configruitions”子菜单
或者点击运行旁边的下拉箭头
点击加号,点击python
Name为配置名称,Script Path为当前的配置要运用到那个文件上,Parameters就是运行时候的参数。其格式类似为:
–dataset “./dataset” –model “./output/simple_nn_model” –label-bin “./output/simple_nn_lb.pickle” –plot “./output/simple_nn_plot.png”
在Parameters后面的空白处填入所需参数值。如有多个参数值,需要用空格分开。
参数填写正确后,点“OK”,再执行“Run”菜单下的“Run”命令,就会得到正确运行结果。
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。