上一页 1 ··· 4 5 6 7 8
摘要: 参考: https://www.cnblogs.com/romangao/p/13052809.html https://blog.csdn.net/xie_0723/article/details/78004649 对于这样的文件结构: classfication #文件夹 │run.py ├─m 阅读全文
posted @ 2020-09-15 11:07 wioponsen 阅读(2976) 评论(0) 推荐(0) 编辑
摘要: ####示例: input_patch = tf.extract_image_patches(input, ksizes=[1, patch_sz, patch_sz, 1], strides=[1, 1, 1, 1], rates=[1, rates, rates, 1], padding="SA 阅读全文
posted @ 2020-08-31 14:46 wioponsen 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: tf.random_normal: 产生正态分布的随机数。 参数(shape,stddev,mean,dtype) tf.random_uniform: 产生[0,1)之间的随机数,也可制定产生[minval,maxval)的随机数 例子: x = tf.constant(1.0,dtype=tf. 阅读全文
posted @ 2020-08-31 14:17 wioponsen 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: 问题描述: TensorFlow中dataset方法中 dataset = dataset.shuffle(buffer_size=20).repeat().batch(batch_size) 其中shuffle的buffer_size是有什么用? 答: 是做随机采样使用的缓冲大小,buffer_s 阅读全文
posted @ 2020-08-31 10:28 wioponsen 阅读(1451) 评论(0) 推荐(0) 编辑
摘要: 主要语义分割网络调研 介绍 图像的语义分割是将输入图像中的每个像素分配一个语义类别,以得到像素化的密集分类。虽然自 2007 年以来,语义分割/场景解析一直是计算机视觉社区的一部分,但与计算机视觉中的其他领域很相似,自 2014 年 Long等人 首次使用全卷积神经网络对自然图像进行端到端分割,语义 阅读全文
posted @ 2019-08-29 14:38 wioponsen 阅读(402) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8