摘要: mnist数据的下载、读取部分请参见:DNN识别mnist手写数字 为了使读取到的图片数据能输入CNN,需要为图片数据增加channel维度 train_x = np.expand_dims(train_x,axis=-1) test_x = np.expand_dims(test_x,axis=- 阅读全文
posted @ 2020-11-01 23:54 Bill_H 阅读(113) 评论(0) 推荐(0) 编辑
摘要: . 匹配任意单个字符 >>> re.findall('o.','hello world') ['o ', 'or'] [] 匹配指定的单个字符 >>> re.findall('[lw]o','hello world') ['lo', 'wo'] [a-z] 匹配a到z的任意单个字母 >>> re.f 阅读全文
posted @ 2020-11-01 23:53 Bill_H 阅读(87) 评论(0) 推荐(0) 编辑