当在命令行中运行一个脚本如果您有一个 Python 脚本(例如 script.py)并且该脚本使用了 argparse 来解析命令行参数,那么可以通过以下方式查看帮助信息(查看方式和普通的linux命令格式相同):
python script.py --help
显示
usage: script.py [-h] [--center_crop] optional arguments: -h, --help show this help message and exit
--center_crop Whether to center crop the input images to the resolution. If not set, the images will be randomly cropped. The images will be resized to the resolution first before cropping.
通过搜索相应选项,查看相关信息