-
大小: 84.53MB文件类型: .rar金币: 2下载: 1 次发布日期: 2022-09-08
- 语言: 其他
- 标签: tensorflow Inception-v3 迁移学习
资源简介
tensorflow利用Inception-v3实现迁移学习。加载已有的模型,作为新任务提取特征的操作,实现分类迁移。包含完整的代码和数据集
代码片段和文件信息
#photo地址:
#http://download.tensorflow.org/example_images/flower_photos.tgz
#Inception-v3模型
#https://storage.googleapis.com/download.tensorflow.org/models/inception_dec_2015.zip
import glob
import os.path
import random
import numpy as np
import tensorflow as tf
from tensorflow.python.platform import gfile
#Inception-v3模型瓶颈层得节点个数
BOTTLENECK_TENSOR_SIZE=2048
BOTTLENECK_TENSOR_NAME=‘pool_3/_reshape:0‘
JPEG_DATA_TENSOR_NAME=‘DecodeJpeg/contents:0‘
MODEL_DIR=‘C:/Users/casgj/PycharmProjects/CNN/inception_dec_2015‘
MODEL_FILE=‘tensorflow_inception_graph.pb‘
CACHE_DIR=‘C:/Users/casgj/PycharmProjects/CNN/bottleneck‘
INPUT_DATA=‘C:/Users/casgj/PycharmProjects/CNN/flower_photos‘
#验证得数据百分比
VALIDATION_PERCENTAGE=10
#测试得数据百分比
TEST_PERCENTAGE=10
#定义神经网络得设置
LEARNING_RATE=0.01
STEPS=4000
BATCH=100
#从数据文件夹读取所有得图片列表并按训练、验证、测试数据分开
def create_image_lists(testing_percentage validation_percentage):
result = {}
sub_dirs = [x[0] for x in os.walk(INPUT_DATA)]
is_root_dir = True
for sub_dir in sub_dirs:
if is_root_dir:
is_root_dir = False
continue
extensions = [‘jpg‘ ‘jpeg‘ ‘JPG‘ ‘JPEG‘]
file_list = []
dir_name = os.path.basename(sub_dir)
for extension in extensions:
file_glob = os.path.join(INPUT_DATA dir_name ‘*.‘ + extension)
file_list.extend(glob.glob(file_glob))
if not file_list:
continue
label_name = dir_name.lower()
# 初始化
training_images = []
testing_images = []
validation_images = []
for file_name in file_list:
base_name = os.path.basename(file_name)
# 随机划分数据
chance = np.random.randint(100) #产生一个<100得正整数
if chance < validation_percentage:
validation_images.append(base_name)
elif chance < (testing_percentage + validation_percentage):
testing_images.append(base_name)
else:
training_images.append(base_name)
result[label_name] = {
‘dir‘: dir_name
‘training‘: training_images
‘testing‘: testing_images
‘validation‘: validation_images
}
return result
#获取给定类别category中index图片的地址
def get_image_path(image_listsimage_dirlabel_nameindexcategory):
label_lists=image_lists[label_name]
category_list=label_lists[category]
mod_index=index% len(category_list)
base_name=category_list[mod_index]
sub_dir=label_lists[‘dir‘]
full_path=os.path.join(image_dirsub_dirbase_name)
return full_path
def get_bottleneck_path(image_listslabel_nameindexcategory):
return get_image_path(image_listsCACHE_DIR
label_nameindexcategory)+‘.txt‘
def run_bottleneck_on_image(sessimage_dataimage_data_tensorbottleneck_tensor):
bottleneck_values=sess.run(bottleneck_te
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 88631107 2018-10-01 12:03 inception_dec_2015.zip
文件 10466 2018-10-02 15:54 迁移学习.py
----------- --------- ---------- ----- ----
88641573 2
相关资源
- TensorFlow1.4 官方手册
- MSCNN_dehaze.rar
- 基于双向LSTM+tensorflow中文分词
- TensorFlow Machine Learning Cookbook+无码高清
- Hands-On Machine Learning with Scikit-Learn an
- TensorFlow 官方文档中文版高清无码PD
- 迁移学习简明手册
- 使用迁移学习做动物脸部识别
- 基于tensorflow的深度学习图像分类案例
- 基于Tensorflow多层神经网络的MNIST手写
- TensorFlow Tutorial
- TensorFlow_2.0快速应用指南英文.tar
- tensorflow图像风格迁移代码
- 论文研究-基于迁移学习和显著性检测
- TensorFlow Machine Learning Cookbook
- Learning TensorFlow: A Guide to Building Deep
- tensorflow271134
- TensorFlow for Machine Intelligence 书籍源码
- 《Hands-On Machine Learning with Scikit-Learn
- Building Machine Learning Projects with Tensor
- TensorFlow Powerful Predictive Analytics with
- 北大tensorflow学习笔记
- LSTMandRNN.zip
- 使用TensorFlow搭建智能开发系统,自动
- Packt.TensorFlow.Machine.Learning.Cookbook.201
- tensorflow深度学习CNN智能识别车牌
- Tensorflow GNN实战.zip
- tensorflow从入门到精通
- 深度卷积生成对抗网络TensorFlow代码实
- 迁移学习理论与应用_杨强
评论
共有 条评论