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