解决参数问题:An exception has occurred, use %tb to see the full traceback.SystemExit: 2

在将pycharm代码移植到jupter中时,会发生参数错误,如下所示

An exception has occurred, use %tb to see the full traceback.

SystemExit: 2

解决方法:

只需要添加一行代码 

parser.add_argument('-f', type=str, default="读取额外的参数")

 解决后:

就可以正常访问参数,读取数据了 

你可能感兴趣的:(常遇到的一些报错整理,python,pytorch,推荐算法,知识图谱)