Traceback (most recent call last): File "E:\my_python_code\Eyes-Lips-Segmentation-master\test.py", line 82, in <module> evaluate(dspth='/home/zll/data/CelebAMask-HQ/test-img/116.jpg', cp='79999_iter.pth') TypeError: evaluate() got an unexpected keyword argument 'dspth'
时间: 2024-02-09 16:07:21 浏览: 131
测试.py
这个错误提示的意思是:在 test.py 文件中的 evaluate 函数中,不应该有名为 'dspth' 的关键字参数。
有可能是因为 evaluate 函数的定义与调用不一致,或是 evaluate 函数的另一个版本中有名为 'dspth' 的参数,但是在当前版本中被删除了,导致调用时出现了错误。
需要检查 evaluate 函数的定义和调用,以及相关代码中是否有其他函数名或参数名与 'dspth' 相同的情况。
阅读全文