当前位置: 首页 > 图灵资讯 > 行业资讯> python如何实现均方误差和均方根误差?

python如何实现均方误差和均方根误差?

来源:图灵python
时间: 2024-09-09 10:09:07

一、python实现均方误差

均方误差是每个数据偏离真实值的平方和平均值,即误差平方和平均值。

用法:一般用于机器学习的预测值与真实值之间的距离。最小二乘法对应于均方误差。

#-*-coding:utf-8-*-
importmath

defget_mse(records_real,records_predict):
"""
均方误差
"""
iflen(records_real)==len(records_predict):
returnsum([(x-y)**2forx,yinzip(records_real,records_predict)])/len(records_real)
else:
returnNone

二、python实现均方根误差

均方根误差,又称标准误差,是均方误差的算术平方根。

#-*-coding:utf-8-*-
importmath

defget_rmse(records_real,records_predict):
"""
均方根误差
"""
mse=get_mse(records_real,records_predict)
ifmse:
returnmath.sqrt(mse)
else:
returnNone