当前位置:   article > 正文

Tensorflow 卷积神经网络 Inception-v3模型 迁移学习 花朵识别_inception v3模型结构

inception v3模型结构

 Inception-v3模型结构:


Inception-v3简介:

1.基于大滤波器尺寸分解卷积
在视觉网络中,预期相近激活的输出是高度相关的。因此,我们可以预期,它们的激活可以在聚合之前被减少,并且这应该会导致类似的富有表现力的局部表示。

全卷积网络 减少计算可以提高效率

2.分解到更小的卷积
5×5换2个3×3

共享权重 减少参数数量








3.空间分解为不对称卷积



可以通过1×n卷积和后面接一个n×1卷积替换任何n×n卷积,并且随着n增长,计算成本节省显著增加



4 利用辅助分类器

辅助分类器起着正则化项的作用

5 有效的网格尺寸减少
池化



先池化再卷积 产生瓶颈
先卷积再池化 计算效率变差


图10。缩减网格尺寸的同时扩展滤波器组的Inception模块。它不仅廉价并且避免了原则1中提出的表示瓶颈。右侧的图表示相同的解决方案,但是从网格大小而不是运算的角度来看。



7. 通过标签平滑进行模型正则化






谷歌提供的训练好的Inception-v3模型:  https://storage.googleapis.com/download.tensorflow.org/models/inception_dec_2015.zip

案例使用的数据集: http://download.tensorflow.org/example_images/flower_photos.tgz

数据集文件解压后,包含5个子文件夹,子文件夹的名称为花的名称,代表了不同的类别。平均每一种花有734张图片,图片是RGB色彩模式,大小也不相同。

  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Tue Apr 24 10:11:28 2018
  4. @author: admin
  5. @author: tz_zs
  6. 卷积神经网络 Inception-v3模型 迁移学习
  7. """
  8. import glob
  9. import os.path
  10. import random
  11. import numpy as np
  12. import tensorflow as tf
  13. from tensorflow.python.platform import gfile
  14. # inception-v3 模型瓶颈层的节点个数
  15. BOTTLENECK_TENSOR_SIZE = 2048
  16. # inception-v3 模型中代表瓶颈层结果的张量名称
  17. BOTTLENECK_TENSOR_NAME = 'pool_3/_reshape:0'
  18. # 图像输入张量所对应的名称
  19. JPEG_DATA_TENSOR_NAME = 'DecodeJpeg/contents:0'
  20. # 下载的谷歌训练好的inception-v3模型文件目录
  21. #MODEL_DIR = '/path/to/model/google2015-inception-v3'
  22. MODEL_DIR = 'E:/DeepLearning/Git/cnn/inception_dec_2015'
  23. # 下载的谷歌训练好的inception-v3模型文件名
  24. MODEL_FILE = 'tensorflow_inception_graph.pb'
  25. # 保存训练数据通过瓶颈层后提取的特征向量
  26. CACHE_DIR = 'tmp/bottleneck'
  27. # 图片数据的文件夹
  28. INPUT_DATA = 'E:/DeepLearning/Git/cnn/flower_photos'
  29. #训练模型的保存地址
  30. MODEL_SAVE_PATH="E:/DeepLearning/Git/cnn/model"
  31. # 验证的数据百分比
  32. VALIDATION_PERCENTAGE = 10
  33. # 测试的数据百分比
  34. TEST_PERCENTACE = 10
  35. # 定义神经网路的设置
  36. LEARNING_RATE = 0.01
  37. STEPS = 200
  38. BATCH = 100
  39. # 这个函数把数据集分成训练,验证,测试三部分
  40. def create_image_lists(testing_percentage, validation_percentage):
  41. """
  42. 这个函数把数据集分成训练,验证,测试三部分
  43. :param testing_percentage:测试的数据百分比 10
  44. :param validation_percentage:验证的数据百分比 10
  45. :return:
  46. """
  47. result = {}
  48. # 获取目录下所有子目录
  49. sub_dirs = [x[0] for x in os.walk(INPUT_DATA)]
  50. # ['/path/to/flower_data', '/path/to/flower_data\\daisy', '/path/to/flower_data\\dandelion',
  51. # '/path/to/flower_data\\roses', '/path/to/flower_data\\sunflowers', '/path/to/flower_data\\tulips']
  52. # 数组中的第一个目录是当前目录,这里设置标记,不予处理
  53. is_root_dir = True
  54. for sub_dir in sub_dirs: # 遍历目录数组,每次处理一种
  55. if is_root_dir:
  56. is_root_dir = False
  57. continue
  58. # 获取当前目录下所有的有效图片文件
  59. extensions = ['jpg', 'jepg', 'JPG', 'JPEG']
  60. file_list = []
  61. dir_name = os.path.basename(sub_dir) # 返回路径名路径的基本名称,如:daisy|dandelion|roses|sunflowers|tulips
  62. for extension in extensions:
  63. file_glob = os.path.join(INPUT_DATA, dir_name, '*.' + extension) # 将多个路径组合后返回
  64. file_list.extend(glob.glob(file_glob)) # glob.glob返回所有匹配的文件路径列表,extend往列表中追加另一个列表
  65. if not file_list: continue
  66. # 通过目录名获取类别名称
  67. label_name = dir_name.lower() # 返回其小写
  68. # 初始化当前类别的训练数据集、测试数据集、验证数据集
  69. training_images = []
  70. testing_images = []
  71. validation_images = []
  72. for file_name in file_list: # 遍历此类图片的每张图片的路径
  73. base_name = os.path.basename(file_name) # 路径的基本名称也就是图片的名称,如:102841525_bd6628ae3c.jpg
  74. # 随机讲数据分到训练数据集、测试集和验证集
  75. chance = np.random.randint(100)
  76. if chance < validation_percentage:
  77. validation_images.append(base_name)
  78. elif chance < (testing_percentage + validation_percentage):
  79. testing_images.append(base_name)
  80. else:
  81. training_images.append(base_name)
  82. result[label_name] = {
  83. 'dir': dir_name,
  84. 'training': training_images,
  85. 'testing': testing_images,
  86. 'validation': validation_images
  87. }
  88. return result
  89. # 这个函数通过类别名称、所属数据集和图片编号获取一张图片的地址
  90. def get_image_path(image_lists, image_dir, label_name, index, category):
  91. """
  92. :param image_lists:所有图片信息
  93. :param image_dir:根目录 ( 图片特征向量根目录 CACHE_DIR | 图片原始路径根目录 INPUT_DATA )
  94. :param label_name:类别的名称( daisy|dandelion|roses|sunflowers|tulips )
  95. :param index:编号
  96. :param category:所属的数据集( training|testing|validation )
  97. :return: 一张图片的地址
  98. """
  99. # 获取给定类别的图片集合
  100. label_lists = image_lists[label_name]
  101. # 获取这种类别的图片中,特定的数据集(base_name的一维数组)
  102. category_list = label_lists[category]
  103. mod_index = index % len(category_list) # 图片的编号%此数据集中图片数量
  104. # 获取图片文件名
  105. base_name = category_list[mod_index]
  106. sub_dir = label_lists['dir']
  107. # 拼接地址
  108. full_path = os.path.join(image_dir, sub_dir, base_name)
  109. return full_path
  110. # 图片的特征向量的文件地址
  111. def get_bottleneck_path(image_lists, label_name, index, category):
  112. return get_image_path(image_lists, CACHE_DIR, label_name, index, category) + '.txt' # CACHE_DIR 特征向量的根地址
  113. # 计算特征向量
  114. def run_bottleneck_on_image(sess, image_data, image_data_tensor, bottleneck_tensor):
  115. """
  116. :param sess:
  117. :param image_data:图片内容
  118. :param image_data_tensor:
  119. :param bottleneck_tensor:
  120. :return:
  121. """
  122. bottleneck_values = sess.run(bottleneck_tensor, {image_data_tensor: image_data})
  123. bottleneck_values = np.squeeze(bottleneck_values)
  124. return bottleneck_values
  125. # 获取一张图片对应的特征向量的路径
  126. def get_or_create_bottleneck(sess, image_lists, label_name, index, category, jpeg_data_tensor, bottleneck_tensor):
  127. """
  128. :param sess:
  129. :param image_lists:
  130. :param label_name:类别名
  131. :param index:图片编号
  132. :param category:
  133. :param jpeg_data_tensor:
  134. :param bottleneck_tensor:
  135. :return:
  136. """
  137. label_lists = image_lists[label_name]
  138. sub_dir = label_lists['dir']
  139. sub_dir_path = os.path.join(CACHE_DIR, sub_dir) # 到类别的文件夹
  140. if not os.path.exists(sub_dir_path): os.makedirs(sub_dir_path)
  141. bottleneck_path = get_bottleneck_path(image_lists, label_name, index, category) # 获取图片特征向量的路径
  142. if not os.path.exists(bottleneck_path): # 如果不存在
  143. # 获取图片原始路径
  144. image_path = get_image_path(image_lists, INPUT_DATA, label_name, index, category)
  145. # 获取图片内容
  146. image_data = gfile.FastGFile(image_path, 'rb').read()
  147. # 计算图片特征向量
  148. bottleneck_values = run_bottleneck_on_image(sess, image_data, jpeg_data_tensor, bottleneck_tensor)
  149. # 将特征向量存储到文件
  150. bottleneck_string = ','.join(str(x) for x in bottleneck_values)
  151. with open(bottleneck_path, 'w') as bottleneck_file:
  152. bottleneck_file.write(bottleneck_string)
  153. else:
  154. # 读取保存的特征向量文件
  155. with open(bottleneck_path, 'r') as bottleneck_file:
  156. bottleneck_string = bottleneck_file.read()
  157. # 字符串转float数组
  158. bottleneck_values = [float(x) for x in bottleneck_string.split(',')]
  159. return bottleneck_values
  160. # 随机获取一个batch的图片作为训练数据(特征向量,类别)
  161. def get_random_cached_bottlenecks(sess, n_classes, image_lists, how_many, category, jpeg_data_tensor,
  162. bottleneck_tensor):
  163. """
  164. :param sess:
  165. :param n_classes: 类别数量
  166. :param image_lists:
  167. :param how_many: 一个batch的数量
  168. :param category: 所属的数据集
  169. :param jpeg_data_tensor:
  170. :param bottleneck_tensor:
  171. :return: 特征向量列表,类别列表
  172. """
  173. bottlenecks = []
  174. ground_truths = []
  175. for _ in range(how_many):
  176. # 随机一个类别和图片编号加入当前的训练数据
  177. label_index = random.randrange(n_classes)
  178. label_name = list(image_lists.keys())[label_index] # 随机图片的类别名
  179. image_index = random.randrange(65536) # 随机图片的编号
  180. bottleneck = get_or_create_bottleneck(sess, image_lists, label_name, image_index, category, jpeg_data_tensor,
  181. bottleneck_tensor) # 计算此图片的特征向量
  182. ground_truth = np.zeros(n_classes, dtype=np.float32)
  183. ground_truth[label_index] = 1.0
  184. bottlenecks.append(bottleneck)
  185. ground_truths.append(ground_truth)
  186. return bottlenecks, ground_truths
  187. # 获取全部的测试数据
  188. def get_test_bottlenecks(sess, image_lists, n_classes, jpeg_data_tensor, bottleneck_tensor):
  189. bottlenecks = []
  190. ground_truths = []
  191. label_name_list = list(image_lists.keys()) # ['dandelion', 'daisy', 'sunflowers', 'roses', 'tulips']
  192. for label_index, label_name in enumerate(label_name_list): # 枚举每个类别,如:0 sunflowers
  193. category = 'testing'
  194. for index, unused_base_name in enumerate(image_lists[label_name][category]): # 枚举此类别中的测试数据集中的每张图片
  195. '''''
  196. print(index, unused_base_name)
  197. 0 10386503264_e05387e1f7_m.jpg
  198. 1 1419608016_707b887337_n.jpg
  199. 2 14244410747_22691ece4a_n.jpg
  200. ...
  201. 105 9467543719_c4800becbb_m.jpg
  202. 106 9595857626_979c45e5bf_n.jpg
  203. 107 9922116524_ab4a2533fe_n.jpg
  204. '''
  205. bottleneck = get_or_create_bottleneck(
  206. sess, image_lists, label_name, index, category, jpeg_data_tensor, bottleneck_tensor)
  207. ground_truth = np.zeros(n_classes, dtype=np.float32)
  208. ground_truth[label_index] = 1.0
  209. bottlenecks.append(bottleneck)
  210. ground_truths.append(ground_truth)
  211. return bottlenecks, ground_truths
  212. def main(_):
  213. image_lists = create_image_lists(TEST_PERCENTACE, VALIDATION_PERCENTAGE)
  214. n_classes = len(image_lists.keys())
  215. # 读取模型
  216. with gfile.FastGFile(os.path.join(MODEL_DIR, MODEL_FILE), 'rb') as f:
  217. graph_def = tf.GraphDef()
  218. graph_def.ParseFromString(f.read())
  219. # 加载模型,返回对应名称的张量
  220. bottleneck_tensor, jpeg_data_tensor = tf.import_graph_def(graph_def, return_elements=[BOTTLENECK_TENSOR_NAME,
  221. JPEG_DATA_TENSOR_NAME])
  222. # 输入
  223. bottleneck_input = tf.placeholder(tf.float32, [None, BOTTLENECK_TENSOR_SIZE], name='BottleneckInputPlaceholder')
  224. ground_truth_input = tf.placeholder(tf.float32, [None, n_classes], name='GroundTruthInput')
  225. # 全连接层
  226. with tf.name_scope('final_training_ops'):
  227. weights = tf.Variable(tf.truncated_normal([BOTTLENECK_TENSOR_SIZE, n_classes], stddev=0.001))
  228. biases = tf.Variable(tf.zeros([n_classes]))
  229. logits = tf.matmul(bottleneck_input, weights) + biases
  230. final_tensor = tf.nn.softmax(logits)
  231. # 损失
  232. cross_entropy = tf.nn.softmax_cross_entropy_with_logits(logits=logits, labels=ground_truth_input)
  233. cross_entropy_mean = tf.reduce_mean(cross_entropy)
  234. # 优化
  235. train_step = tf.train.GradientDescentOptimizer(LEARNING_RATE).minimize(cross_entropy_mean)
  236. # 正确率
  237. with tf.name_scope('evaluation'):
  238. correct_prediction = tf.equal(tf.argmax(final_tensor, 1), tf.argmax(ground_truth_input, 1))
  239. #sens_prediction = tf.equal(1-tf.argmax(final_tensor, 1), tf.argmax(ground_truth_input, 1))
  240. #spec_prediction = tf.equal(tf.argmax(final_tensor, 1), tf.argmax(ground_truth_input, 1))
  241. # TP=sum(tf.argmax(final_tensor, 1), tf.argmax(ground_truth_input, 1))
  242. evaluation_step = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
  243. #saver=tf.train.Saver()
  244. with tf.Session(config=tf.ConfigProto(log_device_placement=True)) as sess:
  245. # 初始化参数
  246. init = tf.global_variables_initializer()
  247. sess.run(init)
  248. print( sess.run(init))
  249. for i in range(STEPS):
  250. # 每次获取一个batch的训练数据
  251. train_bottlenecks, train_ground_truth = get_random_cached_bottlenecks(sess, n_classes, image_lists, BATCH,
  252. 'training', jpeg_data_tensor,
  253. bottleneck_tensor)
  254. # 训练
  255. sess.run(train_step,
  256. feed_dict={bottleneck_input: train_bottlenecks, ground_truth_input: train_ground_truth})
  257. # 验证
  258. if i % 100 == 0 or i + 1 == STEPS:
  259. validation_bottlenecks, validation_ground_truth = get_random_cached_bottlenecks(sess, n_classes,
  260. image_lists, BATCH,
  261. 'validation',
  262. jpeg_data_tensor,
  263. bottleneck_tensor)
  264. validation_accuracy = sess.run(evaluation_step, feed_dict={bottleneck_input: validation_bottlenecks,
  265. ground_truth_input: validation_ground_truth})
  266. print('Step %d: Validation accuracy on random sampled %d examples = %.1f%%' % (
  267. i, BATCH, validation_accuracy * 100))
  268. # 测试
  269. test_bottlenecks, test_ground_truth = get_test_bottlenecks(sess, image_lists, n_classes, jpeg_data_tensor,
  270. bottleneck_tensor)
  271. test_accuracy = sess.run(evaluation_step,
  272. feed_dict={bottleneck_input: test_bottlenecks, ground_truth_input: test_ground_truth})
  273. print('Final test accuracy = %.1f%%' % (test_accuracy * 100))
  274. if __name__ == '__main__':
  275. tf.app.run()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/1012218
推荐阅读
相关标签
  

闽ICP备14008679号