2018年12月6日

利用python实现简单词频统计、构建词云

摘要: 1、利用jieba分词,排除停用词stopword之后,对文章中的词进行词频统计,并用matplotlib进行直方图展示 注意:matplotlib展示中文需要进行相应设置 2、利用jieba分词,利用collections统计词频,利用wordcloud生成词云,并定义了 词频背景,最后通过mat 阅读全文

posted @ 2018-12-06 23:02 米仓山下 阅读(4514) 评论(0) 推荐(0) 编辑

2018年11月16日

机器学习实战(Machine Learning in Action)学习笔记————09.利用PCA简化数据

摘要: 机器学习实战(Machine Learning in Action)学习笔记————09.利用PCA简化数据关键字:PCA、主成分分析、降维作者:米仓山下时间:2018-11-15机器学习实战(Machine Learning in Action,@author: Peter Harrington) 阅读全文

posted @ 2018-11-16 21:25 米仓山下 阅读(369) 评论(0) 推荐(0) 编辑

2018年11月3日

机器学习实战(Machine Learning in Action)学习笔记————08.使用FPgrowth算法来高效发现频繁项集

摘要: 机器学习实战(Machine Learning in Action)学习笔记————08.使用FPgrowth算法来高效发现频繁项集关键字:FPgrowth、频繁项集、条件FP树、非监督学习作者:米仓山下时间:2018-11-3机器学习实战(Machine Learning in Action,@a 阅读全文

posted @ 2018-11-03 15:13 米仓山下 阅读(625) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————07.使用Apriori算法进行关联分析

摘要: 机器学习实战(Machine Learning in Action)学习笔记————07.使用Apriori算法进行关联分析关键字:Apriori、关联规则挖掘、频繁项集作者:米仓山下时间:2018-11-2机器学习实战(Machine Learning in Action,@author: Pet 阅读全文

posted @ 2018-11-03 15:12 米仓山下 阅读(594) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————06.k-均值聚类算法(kMeans)学习笔记

摘要: 机器学习实战(Machine Learning in Action)学习笔记————06.k-均值聚类算法(kMeans)学习笔记关键字:k-均值、kMeans、聚类、非监督学习作者:米仓山下时间:2018-11-3机器学习实战(Machine Learning in Action,@author: 阅读全文

posted @ 2018-11-03 15:11 米仓山下 阅读(231) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————05.Logistic回归

摘要: 机器学习实战(Machine Learning in Action)学习笔记————05.Logistic回归关键字:Logistic回归、python、源码解析、测试作者:米仓山下时间:2018-10-26机器学习实战(Machine Learning in Action,@author: Pet 阅读全文

posted @ 2018-11-03 15:09 米仓山下 阅读(263) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————04.朴素贝叶斯分类(bayes)

摘要: 机器学习实战(Machine Learning in Action)学习笔记————04.朴素贝叶斯分类(bayes)关键字:朴素贝叶斯、python、源码解析作者:米仓山下时间:2018-10-25机器学习实战(Machine Learning in Action,@author: Peter H 阅读全文

posted @ 2018-11-03 15:08 米仓山下 阅读(417) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————03.决策树原理、源码解析及测试

摘要: 机器学习实战(Machine Learning in Action)学习笔记————03.决策树原理、源码解析及测试关键字:决策树、python、源码解析、测试作者:米仓山下时间:2018-10-24机器学习实战(Machine Learning in Action,@author: Peter H 阅读全文

posted @ 2018-11-03 15:06 米仓山下 阅读(243) 评论(0) 推荐(0) 编辑

机器学习实战(Machine Learning in Action)学习笔记————02.k-邻近算法(KNN)

摘要: 机器学习实战(Machine Learning in Action)学习笔记————02.k-邻近算法(KNN)关键字:邻近算法(kNN: k Nearest Neighbors)、python、源码解析、测试作者:米仓山下时间:2018-10-21机器学习实战(Machine Learning i 阅读全文

posted @ 2018-11-03 15:01 米仓山下 阅读(205) 评论(0) 推荐(0) 编辑

2018年10月17日

WebSocket实现web即时通信(后端nodejs实现)

摘要: WebSocket实现web即时通信一、首先看一下,HTTP、ajax轮询、long poll和WebSocket的区别:1、HTTP 协议(短连接):一个 Request 一个 Response。缺陷:通信只能由客户端发起。 2、ajax轮询:ajax轮询的原理非常简单,让浏览器隔个几秒就发送一次 阅读全文

posted @ 2018-10-17 20:50 米仓山下 阅读(515) 评论(0) 推荐(0) 编辑

导航