
算法
文章平均质量分 62
何毕之
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# K-Means
首先不知道怎么理解K-means的同学先看一下这篇文章 接下来直接上代码: public class Model { public List<Point> CenterPoints { get; set; } public Dictionary<int, List<Point>> Result { get; set; } } public class Program { stat原创 2018-11-05 15:11:18 · 2059 阅读 · 7 评论 -
一元线性回归 C#
什么是一元线性回归: https://blog.youkuaiyun.com/cx943024256/article/details/79124113 https://blog.youkuaiyun.com/Moxiaoaijing/article/details/81109220 https://blog.youkuaiyun.com/hongbin_xu/article/details/77102810 第三篇的比较好点...原创 2018-11-20 17:00:19 · 2341 阅读 · 0 评论