李小文知乎文章与Github代码汇总

共建立了2个Github项目,实现了20个算法,写了12篇知乎文章。

---------------------------------------------------------------------------------------

【Github项目】

机器学习https://github.com/tushushu/imylu​github.com

2. 算法与数据结构https://github.com/tushushu/pads​github.com

---------------------------------------------------------------------------------------

【文章及代码链接】

线性回归李小文:线性回归的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/linear_regression_example.py​github.com

2. 逻辑回归李小文:逻辑回归的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/logistic_regression_example.py​github.com

3. Cart回归树李小文:回归树的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/regression_tree_example.py​github.com

4.1 GBDT回归李小文:GBDT回归的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/gbdt_regressor_example.py​github.com

4.2 GBDT分类李小文:GBDT分类的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/gbdt_classifier_example.py​github.com

5. 大顶堆李小文:大顶堆的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/max_heap_example.py​github.com

6. KD-Tree李小文:KD Tree的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/kd_tree_example.py​github.com

7. KNN李小文:KNN的原理及Python实现​zhuanlan.zhihu.com

7.1 KNN回归https://github.com/tushushu/imylu/blob/master/examples/knn_regressor_example.py​github.com

7.2 KNN分类https://github.com/tushushu/imylu/blob/master/examples/knn_classifier_example.py​github.com

8. ALS李小文:协同过滤(ALS)的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/als_example.py​github.com

9. 朴素贝叶斯李小文:高斯朴素贝叶斯的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/gaussian_nb_example.py​github.com

10. 全连接神经网络李小文:全连接神经网络的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/imylu/blob/master/examples/mlp_example.py​github.com

11. 梯度下降李小文:梯度下降的原理及Python实现​zhuanlan.zhihu.comhttps://github.com/tushushu/pads/blob/master/examples/gradient_decent_example.py​github.com

12. 分类模型的评估李小文:分类模型评估的方法及Python实现​zhuanlan.zhihu.comtushushu/imylu​github.com

--------------------------------分割线----------------------------------------------------

13. 决策树https://github.com/tushushu/imylu/blob/master/examples/decision_tree_example.py​github.com

14. 随机森林https://github.com/tushushu/imylu/blob/master/examples/random_forest_example.py​github.com

15. K-meanshttps://github.com/tushushu/imylu/blob/master/examples/kmeans_example.py​github.com

16. HMMhttps://github.com/tushushu/imylu/blob/master/examples/hmm_example.py​github.com

17. PCAhttps://github.com/tushushu/imylu/blob/master/examples/pca_example.py​github.com

18. 孤立森林https://github.com/tushushu/imylu/blob/master/examples/isolation_forest_example.py​github.com

19. 岭回归https://github.com/tushushu/imylu/blob/master/examples/ridge_regressor_example.py​github.com

20. 模拟退火https://github.com/tushushu/pads/blob/master/examples/simulated_annealing_example.py​github.com

常见算法的python实现回归树的原理及Python实现

算法python知乎_20个算法李小文知乎文章与Github代码汇总相关推荐

  1. 多元线性回归算法python实现_手写算法-Python代码推广多元线性回归

    1.梯度下降-矩阵形式 上篇文章介绍了一元线性回归,包括Python实现和sklearn实现的实例.对比,以及一些问题点,详情可以看这里: 链接: 手写算法-Python代码实现一元线性回归 里面封装 ...

  2. 数据结构与算法python描述_数据结构与算法——Python语言描述.pdf

    数据结构与算法--Python语言描述.pdf 欢迎加入非盈利Python编学习交流程QQ群783462347,群里免费提供500+本Python书籍! 欢迎加入非盈利Python编程学习交流程QQ群 ...

  3. 排序算法python实现_合并排序算法– Java,C和Python实现

    排序算法python实现 Merge sort is one of the most efficient sorting algorithms. It works on the principle o ...

  4. 智能优化算法——python手动实现交叉进化算法

    交叉进化算法 依赖包 超参数 待优化的函数 初始化 算法主体 变异 交叉 选择 画图 交叉进化并调用 拟合效果 代码 之前我们手动实现了 遗传算法.交叉进化算法也是进化算法的一种,他具有参数少,易实现 ...

  5. python素数算法,Python中的AKS素数算法

    是的,去看看rosettacode.org上的AKS test for primes页面def expand_x_1(p): ex = [1] for i in range(p): ex.append ...

  6. 字符串的KMP算法--Python实现

    KMP算法Python实现 今天研究KMP算法,看来很多版本,有不同的语言写的,但是感觉越看越乱,最后自己试着写一份进行总结 首先,KMP算法使字符串匹配中的优化算法,使原来的O(m*n)降到了O(m ...

  7. Apriori算法python实现(数据挖掘学习笔记)

    目录 1.算法伪代码 2.算法代码 3.测试数据 4.结果 1.算法伪代码 输入:事务数据库D:最小支持度阈值. 输出:D中的频繁项集L. 方法:  L1 = find_frequent_1_item ...

  8. 压缩感知重构算法之IHT算法python实现

    压缩感知重构算法之OMP算法python实现 压缩感知重构算法之CoSaMP算法python实现 压缩感知重构算法之SP算法python实现 压缩感知重构算法之IHT算法python实现 压缩感知重构 ...

  9. 狄杰斯特拉算法-----Python

    狄克斯特拉算法-----Python 1.狄克斯塔拉算法介绍 如果要找出段数最小的路径,我们可以使用广度优先搜索(上节介绍过哦).但如果要找出最快的路径,该怎么办呢? 为次我们可以使用另一种算法,狄克 ...

最新文章

  1. java哈夫曼编码与译码_哈夫曼编码与译码
  2. python获取当前路径下所有文件
  3. 实现拼团_生鲜商家如何使用微信拼团小程序做水果生鲜拼团活动?
  4. java 基本类型 线程安全_java的基本类型和i++线程安全性的深入解析
  5. CRM公海自动回收规则
  6. ios 桥接文件找不到文件_电脑文件搜索神器,没有找不到的东西
  7. pcb布线拐角处打地孔_PCB线路板布线的10个重要规则——公众号【深圳LED网】
  8. 最长递增子序列 子串_最长递增奇偶子序列
  9. 回溯算法解决八皇后_4皇后问题和使用回溯算法的解决方案
  10. 用贪婪算法解决背包问题_解决主要算法问题的贪婪策略
  11. 不知道选择多云还是混合云?先把概念弄清楚吧
  12. HttpRuntime.Cache的使用经验
  13. Windows下Android开发环境搭建和配置
  14. Vue学习笔记之01-Vue的特点
  15. 关灯游戏java代码_江湖救急!在用JAVA做一个关灯游戏,有些不会的地方
  16. GB/T19001—2008质量管理体系要求、标准、贯标(贯彻标准)
  17. edem颗粒替换_Altair EDEM Professional 2020.2安装教程(附替换补丁)
  18. 河南省软件测试竞赛证书,河南省大学生国家安全知识竞赛
  19. java加减乘除判断代码_JAVA实现精确的加减乘除代码
  20. win10远程桌面_怎么选择Win10系统版本?家庭版与专业版的对比介绍

热门文章

  1. MFC的六大关键技术
  2. oracle 驱动表提示错误代码,oracle驱动表以及如何确定驱动表
  3. mysql怎么禁止远程连接_mysql如何设置禁止远程连接
  4. 概率论基础知识各种分布
  5. Python Requests 丨爬虫基础入门
  6. Dom4j完整教程~DOM4J简介
  7. Spring Data JPA 从入门到精通~定义查询方法的配置方法
  8. python中for语句涉及的序列可以是关系表达式吗_为什么我可以在Python for循环中为迭代器和序列使用相同的名称?...
  9. 现代软件工程讲义 源代码管理
  10. 现代软件工程系列 学生的精彩文章 (4) 为用户服务