Haluoti
Haluoti
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Haluoti的博客
全部文章
(共1篇)
题解 | 使用正规方程的线性回归
import numpy as np def linear_regression_normal_equation(X: list[list[float]], y: list[float]) -> list[float]: # 实现代码 X_train = np.array(X)...
2026-01-24
0
18