TypeError: MAE() takes 2 positional arguments but 3 were given
时间: 2023-10-31 17:48:34 浏览: 138
django报错:add_atr() takes 0 positional arguments but 1 was given
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.
阅读全文