当前位置:网站首页>Introduction of linear regression 01 - API use cases
Introduction of linear regression 01 - API use cases
2022-08-04 06:05:00 【I'm fine please go away thank you】
- API介绍
- 案例
- 给定一个数据集
- 代码
from sklearn.linear_model import LinearRegression
# 1.获取数据
x = [[80, 86],
[82, 80],
[85, 78],
[90, 90],
[86, 82],
[82, 90],
[78, 80],
[92, 94]]
y = [84.2, 80.6, 80.1, 90, 83.2, 87.6, 79.4, 93.4]
# 2.数据基本处理(略)
# 3.特征工程(略)
# 4.机器学习
# 4.1 创建模型
estimator = LinearRegression()
#4.2 训练模型
estimator.fit(x, y)
#5.模型评估(略)
# 获取回归系数
estimator.coef_
# 回归预测
estimator.predict([[100, 80]])
# get offset (接近于0)
estimator.intercept_
- 部分运行截图
边栏推荐
猜你喜欢
随机推荐
(十三)二叉排序树
自动化运维工具Ansible(2)ad-hoc
flink onTimer定时器实现定时需求
SQL练习 2022/7/1
Simple and clear, the three paradigms of database design
Upload靶场搭建&&第一二关
[Deep Learning 21 Days Learning Challenge] 1. My handwriting was successfully recognized by the model - CNN implements mnist handwritten digit recognition model study notes
Th in thymeleaf: href use notes
Shell(3)条件控制语句
android基础 [超级详细android存储方式解析(SharedPreferences,SQLite数据库存储)]
【深度学习21天学习挑战赛】2、复杂样本分类识别——卷积神经网络(CNN)服装图像分类
pgsql函数中的return类型
TensorFlow2学习笔记:7、优化器
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
ISCC2021———MISC部分复现(练武)
Kubernetes基本入门-概念介绍(一)
进程、线程、协程的区别和联系?
Androd Day02
postgres 递归查询
TensorFlow2 study notes: 4. The first neural network model, iris classification