解决 TensorFlow tfrecord_image_resizer.py 报错:必需参数缺失
解决 TensorFlow tfrecord_image_resizer.py 报错:必需参数缺失
你可能遇到过以下错误提示:
tfrecord_image_resizer.py: error: the following arguments are required: -i/--input_dir, -o/--output_dir
这个错误提示表示你必须提供必需的参数 '-i/--input_dir' 和 '-o/--output_dir',即输入和输出目录。请检查你的命令行参数是否正确。例如:
python tfrecord_image_resizer.py -i input_images -o output_images
其中,'input_images' 是输入图像所在的目录,'output_images' 是输出图像所在的目录。你可以根据你的实际情况修改这些参数。
注意:
- 确保你提供的是有效的目录路径。
- 确保你的 Python 环境中已经安装了 TensorFlow 库。
如果你仍然遇到问题,请查看 TensorFlow 官方文档或寻求技术支持。
原文地址: https://www.cveoy.top/t/topic/nAaD 著作权归作者所有。请勿转载和采集!