python如何求rmse
时间: 2023-11-07 09:06:40 浏览: 86
Python求EXCEL多个Sheet的RMSE
求 RMSE(均方根误差)的 Python 代码可以如下:
```python
import numpy as np
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())
```
其中,`predictions` 是模型预测的结果,`targets` 是真实标签。使用该函数可以得到模型的 RMSE 值。
阅读全文