
决策树
Something Just Like
I've been reading books of old
The legends and the myths
Achilles and his gold
Hercules and his gifts
Spiderman's control
And Batman with his fists
And clearly I don't see myself upon that list
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
机器学习中的算法决策树与随机森林
原创文章,如需转载请保留出处 本博客为唐宇迪老师python数据分析与机器学习实战课程学习笔记 一. 决策树 1.1 树模型 决策树:从根节点开始一步步走到叶子节点(决策) 所有的数据最终都会落到叶子节点,既可以做分类也可以做回归 1.2 树的组成 根节点:第一个选择点 非叶子节点与分支:中间过程 叶子节点:最终的决策结果 1.3 节点 增加节点相当于在数据中切一刀,节点越多越好吗? ...原创 2019-07-06 16:56:41 · 593 阅读 · 0 评论 -
机器学习案例实战:使用sklearn构造决策树模型
原创文章,如需转载请保留出处 本博客为唐宇迪老师python数据分析与机器学习实战课程学习笔记 一. 决策树复习 参考https://blog.youkuaiyun.com/qq_14815661/article/details/94838783 二. 决策树涉及参数 2.1 导入三大件 %matplotlib inline import matplotlib.pyplot as plt import pa...原创 2019-07-07 10:54:56 · 1248 阅读 · 0 评论