python 均方根函数
时间: 2023-07-28 21:46:28 浏览: 202
Python中计算均方根的函数是`sqrt(mean(square(x)))`,可以使用NumPy库中的`numpy.sqrt()`、`numpy.mean()`和`numpy.square()`函数来实现。具体如下所示:
```python
import numpy as np
def rmse(predictions, targets):
return np.sqrt(np.mean(np.square(predictions - targets)))
```
其中,`predictions`为模型预测的结果,`targets`为实际的标签值。
阅读全文