均方根误差python和平均绝对误差
时间: 2023-10-12 13:11:10 浏览: 92
快速计算数组均方根误差RMSE 和RPD的程序
5星 · 资源好评率100%
在Python中,可以使用numpy库中的函数计算均方根误差和平均绝对误差。具体实现如下:
```python
import numpy as np
# 计算均方根误差
def rmse(predictions, targets):
return np.sqrt(((predictions - targets) ** 2).mean())
# 计算平均绝对误差
def mae(predictions, targets):
return np.abs(predictions - targets).mean()
```
其中,`predictions`为预测值,`targets`为真实值。可以通过调用这两个函数来计算均方根误差和平均绝对误差。
阅读全文