会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
天生自然
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
···
263
264
265
266
267
268
269
270
271
···
276
下一页
2018年12月25日
吴裕雄 python 机器学习-NBYS(2)
摘要: import matplotlib import numpy as np import matplotlib.pyplot as plt n = 1000 xcord0 = [] ycord0 = [] xcord1 = [] ycord1 = [] markers =[] colors =[] for i in range(n): [r0,r1] = np.random.stan...
阅读全文
posted @ 2018-12-25 15:26 吴裕雄
阅读(574)
评论(0)
推荐(0)
编辑
吴裕雄 python 机器学习-NBYS(1)
摘要: import numpy as np def loadDataSet(): postingList=[['my', 'dog', 'has', 'flea', 'problems', 'help', 'please'], ['maybe', 'not', 'take', 'him', 'to', 'dog', 'park', 'stupid'], ...
阅读全文
posted @ 2018-12-25 15:24 吴裕雄
阅读(680)
评论(0)
推荐(0)
编辑
2018年12月20日
吴裕雄 python 爬虫(4)
摘要: ............................................ 50 .................................................................. ...................................
阅读全文
posted @ 2018-12-20 16:40 吴裕雄
阅读(245)
评论(0)
推荐(0)
编辑
吴裕雄 python 爬虫(3)
摘要: ........................................................
阅读全文
posted @ 2018-12-20 16:10 吴裕雄
阅读(248)
评论(0)
推荐(0)
编辑
吴裕雄 python 爬虫(2)
摘要: import requests from bs4 import BeautifulSoup url = 'http://www.baidu.com' html = requests.get(url) sp = BeautifulSoup(html.text, 'html.parser') print(sp) html_doc = """ 页标题 文件标题 Once upon a t...
阅读全文
posted @ 2018-12-20 16:02 吴裕雄
阅读(315)
评论(0)
推荐(0)
编辑
吴裕雄 python 爬虫(1)
摘要: from urllib.parse import urlparse url = 'http://www.pm25x.com/city/beijing.htm' o = urlparse(url) print(o) print("scheme={}".format(o.scheme)) # http print("netloc={}".format(o.netloc)) # www.pm25...
阅读全文
posted @ 2018-12-20 15:57 吴裕雄
阅读(235)
评论(0)
推荐(0)
编辑
吴裕雄 python 机器学习-DMT(2)
摘要: import matplotlib.pyplot as plt decisionNode = dict(boxstyle="sawtooth", fc="0.8") leafNode = dict(boxstyle="round4", fc="0.8") arrow_args = dict(arrowstyle=" maxDepth: maxDepth = thisDepth retu...
阅读全文
posted @ 2018-12-20 12:11 吴裕雄
阅读(551)
评论(0)
推荐(0)
编辑
吴裕雄 python 机器学习-DMT(1)
摘要: import numpy as np import operator as op from math import log def createDataSet(): dataSet = [[1, 1, 'yes'], [1, 1, 'yes'], [1, 0, 'no'], [0, 1, 'no...
阅读全文
posted @ 2018-12-20 12:09 吴裕雄
阅读(309)
评论(0)
推荐(0)
编辑
2018年12月19日
吴裕雄 python 机器学习-KNN(2)
摘要: ...................................................
阅读全文
posted @ 2018-12-19 13:24 吴裕雄
阅读(291)
评论(0)
推荐(0)
编辑
2018年12月18日
吴裕雄 python 机器学习-KNN算法(1)
摘要: ................................................ .......................................
阅读全文
posted @ 2018-12-18 08:35 吴裕雄
阅读(301)
评论(0)
推荐(0)
编辑
上一页
1
···
263
264
265
266
267
268
269
270
271
···
276
下一页