TypeError: evaluation() got an unexpected keyword argument 'y_prediction'
时间: 2023-11-19 17:57:09 浏览: 60
µVISION: Error: Encountered an improper argument
这个错误通常是因为在调用evaluation()函数时,传递了一个不支持的参数'y_prediction'。可能是因为该参数名称拼写错误或者该函数不支持该参数。建议检查一下代码中evaluation()函数的参数是否正确。
```python
# 例子
def evaluation(x, y_true):
# 模型评估代码
pass
# 调用evaluation()函数时,不应该传递'y_prediction'参数
x_test = ...
y_test = ...
y_pred = model.predict(x_test)
accuracy = evaluation(x_test, y_test)
```
阅读全文