上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页
摘要: p0V,p1V,pSpam=trainNBO(array[trainMat],array(trainClasses))改为:p0V,p1V,pSpam=trainNBO(array(trainMat]),array(trainClasses)) 阅读全文
posted @ 2015-10-06 21:13 chamie 阅读(4377) 评论(0) 推荐(0) 编辑
摘要: 单行的注释:#多行注释:三个单引号和三个双引号都可以1 '''2 代码3 '''4 5 """6 代码7 """ 阅读全文
posted @ 2015-10-06 14:49 chamie 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://www.centoscn.com/CentOS/help/2013/1024/1967.html文件(夹)查看类命令ls--显示指定目录下内容说明:ls 显示结果以不同的颜色来区分文件类别。蓝色代表目录,灰色代表普通文件,绿色代表可执行文件,红色代表压缩文件,浅蓝色代表链接文件。... 阅读全文
posted @ 2015-10-06 14:34 chamie 阅读(5276) 评论(0) 推荐(0) 编辑
摘要: http://www.centoscn.com/CentOS/help/2013/0803/914.html 阅读全文
posted @ 2015-10-05 22:23 chamie 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: 使用numpy.zeros,numpy.ones,numpy.eye等方法可以构造特定的矩阵例如:代码如下:>>>from numpy import *>>> a=zeros((3,4))>>> aarray([[ 0., 0., 0., 0.], [ 0., 0., 0., ... 阅读全文
posted @ 2015-10-05 17:49 chamie 阅读(19715) 评论(0) 推荐(1) 编辑
摘要: 缩进错误,此错误,最常见的原因是行之间没有对齐。参考:http://www.crifan.com/python_syntax_error_indentationerror/comment-page-1/ 阅读全文
posted @ 2015-10-03 21:21 chamie 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 本节讲解如何预测患者需要佩戴的隐形眼镜类型。1、使用决策树预测隐形眼镜类型的一般流程(1)收集数据:提供的文本文件(数据来源于UCI数据库)(2)准备数据:解析tab键分隔的数据行(3)分析数据:快速检查数据,确保正确地解析数据内容,使用createPlot()函数绘制最终的树形图(4)训练算法:c... 阅读全文
posted @ 2015-09-29 23:08 chamie 阅读(804) 评论(0) 推荐(0) 编辑
摘要: 平时用的sum应该是默认的axis=0 就是普通的相加,当加入axis=1以后就是将一个矩阵的每一行向量相加。例如:1 >>>import numpy as np3 >>>np.sum([[0,1,2],[2,1,3],axis=1)5 array([3,6])1 c = np.array([[0,... 阅读全文
posted @ 2015-09-29 21:18 chamie 阅读(6493) 评论(0) 推荐(0) 编辑
摘要: shape函数是numpy.core.fromnumeric中的函数,它的功能是读取矩阵的长度。1 >>> a=mat([[1,2,3],[5,6,9]]);2 >>> a3 matrix([[1, 2, 3],4 [5, 6, 9]])5 >>> shape(a)[0]6 27 >... 阅读全文
posted @ 2015-09-29 20:48 chamie 阅读(2379) 评论(0) 推荐(0) 编辑
摘要: 1.函数的定义与说明tile函数位于python模块numpy.lib.shape_base中,功能是重复某个数组。比如tile(A,n),功能是将数组A重复n次,构成一个新的数组。2.函数操作示例(1)先来引入numpy下的所有方法(2)我们创建一个a,如图下图,使用tile来创建b,注意看b的数... 阅读全文
posted @ 2015-09-29 20:16 chamie 阅读(646) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页