解决Python3中的错误,需要以下参数:-d /-dataset

时间:2020-09-17 08:00:35

标签: python python-3.x numpy opencv scikit-learn

我在尝试在MacOS的python3中运行程序时遇到此错误。谁能告诉我该如何解决?已经谢谢你了!这将是极大的帮助。 该项目旨在使用计算机视觉检测帕金森氏病。 我的python3版本是3.8

usage: detect_parkinsons.py [-h] -d DATASET [-t TRIALS]
detect_parkinsons.py: error: the following arguments are required: -d/--dataset

这是代码:

# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-d", "--dataset", required=True,
    help="path to input dataset")
ap.add_argument("-t", "--trials", type=int, default=5,
    help="# of trials to run")
args = vars(ap.parse_args())

1 个答案:

答案 0 :(得分:0)

我认为您错过了数据集的路径,因此请添加数据集路径,这样就可以正常工作。

detect_parkinsons.py -d [Enter path of dataset]