Python报错:run.py: error: the following arguments are required: --model

运行报错:run.py: error: the following arguments are required: --model
Python报错:run.py: error: the following arguments are required: --model_第1张图片
错误原因:需要缺乏配置参数,需要进行相关参数配置。
解决办法:在Pycharm的编辑设置,加上–model--model=****,其中****为指定的模型名称,按照自己实际报错进行添加,比如我这里要跑的模型为bert,因此加上–model--model=bert
Python报错:run.py: error: the following arguments are required: --model_第2张图片
Python报错:run.py: error: the following arguments are required: --model_第3张图片
代码即可正常运行。
Python报错:run.py: error: the following arguments are required: --model_第4张图片

你可能感兴趣的:(Python常见报错,python,pycharm,pytorch)