TypeError: MAE() takes 2 positional arguments but 3 were given
时间: 2023-10-31 17:48:34 浏览: 130
Python3.x和Python2.x的区别.docx
This error message indicates that the function MAE() was called with three arguments, but it only accepts two. Check the code where the MAE() function is called and make sure it is only passed two arguments. Alternatively, you may need to modify the function definition to accept three arguments.
阅读全文