我试图在终端中运行以下脚本:python write_tfrecords--dataset_dir /Users/shwaitkumar/Desktop/NLP/Text Detection/Synthetic Train Set - Detection & Recognition--save_dir /Users/shwaitkumar/Desktop/NLP/Text Detection/untitled folder但我无法运行它。如果我一个接一个地运行它,它会在第 1 行给出错误,即未定义路径,如果我尝试将其全部粘贴并运行,我会得到另一个错误,bash : -- command not found。我如何在终端中运行这个脚本?我什至创建了一个 conda 环境来运行它,但仍然是同样的错误。
1 回答
潇湘沐
TA贡献1816条经验 获得超6个赞
您的执行方式似乎存在三个问题:
write_tfrecords 应该是“write_tfrecords.py”
三行应合并为一行
Arg 值(文件夹名称)中有空格,它们应该用引号引起来。
python write_tfrecords.py --dataset_dir "/Users/shwaitkumar/Desktop/NLP/Text Detection/Synthetic Train Set - Detection & Recognition" --save_dir "/Users/shwaitkumar/Desktop/NLP/Text Detection/untitled 文件夹"
添加回答
举报
0/150
提交
取消