摘要: 1 np.zeros内参数个数代表生成数组维数。a, b, c,依次表示外层到内层。 2 3 >>> np.zeros((1, 5)) 4 5 #Out: 6 [[0. 0. 0. 0. 0.]] 7 8 >>> np.zeros((2,3,5)) 9 10 #Out: 11 [[[0. 0. 0. 阅读全文
posted @ 2018-11-23 17:58 Parallax 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: range(a, b, step) #a下界:默认从0开始。b:上界,不包含。step:步长。 1 >>> range(1,5) #代表从1到5(不包含5) 2 3 [1, 2, 3, 4] 4 5 >>> range(1,5,2) #代表从1到5,间隔2(不包含5) 6 7 [1, 3] 8 9 阅读全文
posted @ 2018-11-23 17:25 Parallax 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding: UTF-8 -*- 2 import numpy as np 3 import operator 4 from os import listdir 5 from sklearn.neighbors import KNeighborsClassifier as kNN 阅读全文
posted @ 2018-11-23 04:54 Parallax 阅读(536) 评论(0) 推荐(0) 编辑
摘要: """ 目录地址引用用单引号! """ from os import listdir listdir('C:/Users/Administrator/Desktop/data/Ch02/digits/trainingDigits') print(trainingFileList[:5]) #Outp 阅读全文
posted @ 2018-11-23 04:34 Parallax 阅读(86) 评论(0) 推荐(0) 编辑