Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangyangcreate committed Nov 12, 2024
1 parent ada34de commit 245ed41
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/ai/传统算法/线性回归.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@ title: 线性回归

多个数据可以用$Y= β0\*X0 + β1X1 + β2X2+…… βnXn+ ε $表示。

## 评估数据的离散程度

平均值:数据相加除以数据个数

平均差:数据与平均值的差的绝对值相加除以数据个数

均方误差:数据与平均值的差的平方相加除以数据个数

| 数据1 | 数据2 | 平均值 | 平均差 | 均方误差 |
|--------|--------|--------|--------|----------|
| 0 | 0 | 0 | 0 | 0 |
| -4 | 4 | 0 | 4 | 16 |
| 7 | 1 | 4 | 4 | 25 |

我们预期中,理想效果应该是 0、0 好于 -4、4 好于 7、1。只有均方误差正确的反应了这一点。


```python showLineNumbers
import numpy as np
from sklearn.linear_model import LinearRegression
Expand Down

0 comments on commit 245ed41

Please sign in to comment.