深度学习
文章平均质量分 58
大大的梦_小小的步伐
大大的梦——小小的步伐
展开
-
深度神经网络正则化
在深层网络学习中,为了防止过拟合问题,正则化是个有效措施。以下是用tensorflow搭建的小例子,配合tensorboard。import tensorflow as tfimport os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' #CPU加速def get_weight(shape,lamda,names): with tf.name_...原创 2018-04-11 21:27:18 · 321 阅读 · 0 评论 -
自动编码器总结
Auto-Encoder总结让import tensorflow as tfimport numpy as npimport matplotlib.pyplot as pltfrom tensorflow.examples.tutorials.mnist import input_dataimport osdata_dir=r'C:\Users\aaa\Desktop\MINIS...原创 2018-12-19 20:24:49 · 575 阅读 · 0 评论 -
语义分割的data augmentation,keras bug
这几天在做语义分割,由于要做数据增强,便想到了利用keras 的ImageDataGenerator,但是发现在保存mask的时候mask的像素值会默认放大到255。网上查了很多也没查到,于是去看源码,发现在image.py里,NumpyArrayIterator这个类里面, def _get_batches_of_transformed_samples(self, index_...原创 2019-08-02 10:54:16 · 670 阅读 · 2 评论