tensorflow的遷移學習retrain.py的改寫

遷移學習與retrain.py是一樣的

這是TensorFlow 實戰(zhàn)Google深度學習框架 ,鄭澤宇書上的代碼:其也是改編了retrain.py的代碼
這里和retrain.py是一樣的恍风,因為pb文件的參數無法繼續(xù)進行訓練了蹦狂,所以取出pb文件模型圖里的頭和尾(頭是'DecodeJpeg/contents:0',把圖片編碼成二進制文件朋贬,在model里面會進行剪裁凯楔,此尾是sofmax前面某一conv層,pool_3/_reshape:0)锦募,把圖片輸入inception_model后生成一個特征摆屯,作為新模型的輸入,這里BOTTLENECK_TENSOR_SIZE = 2048說明pool_3/_reshape:0之后特征的shape為2048糠亩,新模型的輸出為n_classes虐骑,與你的具體任務有關,這flower有四類赎线,所以為n_classes = 4廷没,這里 n_classes = len(image_lists.keys()),看你在flower_potos文件夾建立幾個子個文件夾垂寥,flower_potos官方的文件有這四類


開始上代碼

import glob
import os.path
import random
import numpy as np
import tensorflow as tf
from tensorflow.python.platform import gfile


# #### 1. 模型和樣本路徑的設置

# In[2]:

BOTTLENECK_TENSOR_SIZE = 2048
BOTTLENECK_TENSOR_NAME = 'pool_3/_reshape:0'
JPEG_DATA_TENSOR_NAME = 'DecodeJpeg/contents:0'


MODEL_DIR = 'inception_model'
MODEL_FILE= 'classify_image_graph_def.pb'

CACHE_DIR = 'bottleneck'
INPUT_DATA = 'flower_photos'

VALIDATION_PERCENTAGE = 10
TEST_PERCENTAGE = 10


# #### 2. 神經網絡參數的設置

# In[3]:

LEARNING_RATE = 0.01
STEPS = 4000
BATCH = 100


# #### 3. 把樣本中所有的圖片列表并按訓練颠黎、驗證、測試數據分開

# In[4]:

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)
            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


# #### 4. 定義函數通過類別名稱矫废、所屬數據集和圖片編號獲取一張圖片的地址盏缤。

# In[5]:

def get_image_path(image_lists, image_dir, label_name, index, category):
    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_dir, sub_dir, base_name)
    return full_path


# #### 5. 定義函數獲取Inception-v3模型處理之后的特征向量的文件地址。

# In[6]:

def get_bottleneck_path(image_lists, label_name, index, category):
    return get_image_path(image_lists, CACHE_DIR, label_name, index, category) + '.txt'


# #### 6. 定義函數使用加載的訓練好的Inception-v3模型處理一張圖片蓖扑,得到這個圖片的特征向量唉铜。

# In[7]:

def run_bottleneck_on_image(sess, image_data, image_data_tensor, bottleneck_tensor):

    bottleneck_values = sess.run(bottleneck_tensor, {image_data_tensor: image_data})

    bottleneck_values = np.squeeze(bottleneck_values)
    return bottleneck_values


# #### 7. 定義函數會先試圖尋找已經計算且保存下來的特征向量,如果找不到則先計算這個特征向量律杠,然后保存到文件潭流。

# In[8]:

def get_or_create_bottleneck(sess, image_lists, label_name, index, category, jpeg_data_tensor, bottleneck_tensor):
    label_lists = image_lists[label_name]
    sub_dir = label_lists['dir']
    sub_dir_path = os.path.join(CACHE_DIR, sub_dir)
    if not os.path.exists(sub_dir_path): os.makedirs(sub_dir_path)
    bottleneck_path = get_bottleneck_path(image_lists, label_name, index, category)
    if not os.path.exists(bottleneck_path):

        image_path = get_image_path(image_lists, INPUT_DATA, label_name, index, category)

        image_data = gfile.FastGFile(image_path, 'rb').read()

        bottleneck_values = run_bottleneck_on_image(sess, image_data, jpeg_data_tensor, bottleneck_tensor)

        bottleneck_string = ','.join(str(x) for x in bottleneck_values)
        with open(bottleneck_path, 'w') as bottleneck_file:
            bottleneck_file.write(bottleneck_string)
    else:

        with open(bottleneck_path, 'r') as bottleneck_file:
            bottleneck_string = bottleneck_file.read()
        bottleneck_values = [float(x) for x in bottleneck_string.split(',')]

    return bottleneck_values


# #### 8. 這個函數隨機獲取一個batch的圖片作為訓練數據竞惋。

# In[9]:

def get_random_cached_bottlenecks(sess, n_classes, image_lists, how_many, category, jpeg_data_tensor, bottleneck_tensor):
    bottlenecks = []
    ground_truths = []
    for _ in range(how_many):
        label_index = random.randrange(n_classes)
        label_name = list(image_lists.keys())[label_index]
        image_index = random.randrange(65536)
        bottleneck = get_or_create_bottleneck(
            sess, image_lists, label_name, image_index, category, jpeg_data_tensor, bottleneck_tensor)
        ground_truth = np.zeros(n_classes, dtype=np.float32)
        ground_truth[label_index] = 1.0
        bottlenecks.append(bottleneck)
        ground_truths.append(ground_truth)

    return bottlenecks, ground_truths


# #### 9. 這個函數獲取全部的測試數據,并計算正確率灰嫉。

# In[10]:

def get_test_bottlenecks(sess, image_lists, n_classes, jpeg_data_tensor, bottleneck_tensor):
    bottlenecks = []
    ground_truths = []
    label_name_list = list(image_lists.keys())
    for label_index, label_name in enumerate(label_name_list):
        category = 'testing'
        for index, unused_base_name in enumerate(image_lists[label_name][category]):
            bottleneck = get_or_create_bottleneck(sess, image_lists, label_name, index, category,jpeg_data_tensor, bottleneck_tensor)
            ground_truth = np.zeros(n_classes, dtype=np.float32)
            ground_truth[label_index] = 1.0
            bottlenecks.append(bottleneck)
            ground_truths.append(ground_truth)
    return bottlenecks, ground_truths


# #### 10. 定義主函數拆宛。

# In[11]:

def main():
    image_lists = create_image_lists(TEST_PERCENTAGE, VALIDATION_PERCENTAGE)
    n_classes = len(image_lists.keys())
    
    # 讀取已經訓練好的Inception-v3模型。
    with gfile.FastGFile(os.path.join(MODEL_DIR, MODEL_FILE), 'rb') as f:
        graph_def = tf.GraphDef()
        graph_def.ParseFromString(f.read())
    bottleneck_tensor, jpeg_data_tensor = tf.import_graph_def(
        graph_def, return_elements=[BOTTLENECK_TENSOR_NAME, JPEG_DATA_TENSOR_NAME])

    # 定義新的神經網絡輸入
    bottleneck_input = tf.placeholder(tf.float32, [None, BOTTLENECK_TENSOR_SIZE], name='BottleneckInputPlaceholder')
    ground_truth_input = tf.placeholder(tf.float32, [None, n_classes], name='GroundTruthInput')
    
    # 定義一層全鏈接層
    with tf.name_scope('final_training_ops'):
        weights = tf.Variable(tf.truncated_normal([BOTTLENECK_TENSOR_SIZE, n_classes], stddev=0.001))
        biases = tf.Variable(tf.zeros([n_classes]))
        logits = tf.matmul(bottleneck_input, weights) + biases
        final_tensor = tf.nn.softmax(logits)
        
    # 定義交叉熵損失函數讼撒。
    cross_entropy = tf.nn.softmax_cross_entropy_with_logits(logits=logits, labels=ground_truth_input)
    cross_entropy_mean = tf.reduce_mean(cross_entropy)
    train_step = tf.train.GradientDescentOptimizer(LEARNING_RATE).minimize(cross_entropy_mean)
    
    # 計算正確率浑厚。
    with tf.name_scope('evaluation'):
        correct_prediction = tf.equal(tf.argmax(final_tensor, 1), tf.argmax(ground_truth_input, 1))
        evaluation_step = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))

    with tf.Session() as sess:
        init = tf.global_variables_initializer()
        sess.run(init)
        # 訓練過程。
        for i in range(STEPS):
 
            train_bottlenecks, train_ground_truth = get_random_cached_bottlenecks(
                sess, n_classes, image_lists, BATCH, 'training', jpeg_data_tensor, bottleneck_tensor)
            sess.run(train_step, feed_dict={bottleneck_input: train_bottlenecks, ground_truth_input: train_ground_truth})

            if i % 100 == 0 or i + 1 == STEPS:
                validation_bottlenecks, validation_ground_truth = get_random_cached_bottlenecks(
                    sess, n_classes, image_lists, BATCH, 'validation', jpeg_data_tensor, bottleneck_tensor)
                validation_accuracy = sess.run(evaluation_step, feed_dict={
                    bottleneck_input: validation_bottlenecks, ground_truth_input: validation_ground_truth})
                print('Step %d: Validation accuracy on random sampled %d examples = %.1f%%' %
                    (i, BATCH, validation_accuracy * 100))
            
        # 在最后的測試數據上測試正確率根盒。
        test_bottlenecks, test_ground_truth = get_test_bottlenecks(
            sess, image_lists, n_classes, jpeg_data_tensor, bottleneck_tensor)
        test_accuracy = sess.run(evaluation_step, feed_dict={
            bottleneck_input: test_bottlenecks, ground_truth_input: test_ground_truth})
        print('Final test accuracy = %.1f%%' % (test_accuracy * 100))

if __name__ == '__main__':
    main()

來個圖吧

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末钳幅,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子炎滞,更是在濱河造成了極大的恐慌敢艰,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件册赛,死亡現場離奇詭異钠导,居然都是意外死亡,警方通過查閱死者的電腦和手機森瘪,發(fā)現死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進店門牡属,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人柜砾,你說我怎么就攤上這事湃望』怀模” “怎么了痰驱?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長瞳浦。 經常有香客問我担映,道長,這世上最難降的妖魔是什么叫潦? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任蝇完,我火速辦了婚禮,結果婚禮上矗蕊,老公的妹妹穿的比我還像新娘短蜕。我一直安慰自己,他們只是感情好傻咖,可當我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布朋魔。 她就那樣靜靜地躺著,像睡著了一般卿操。 火紅的嫁衣襯著肌膚如雪警检。 梳的紋絲不亂的頭發(fā)上孙援,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機與錄音扇雕,去河邊找鬼拓售。 笑死,一個胖子當著我的面吹牛镶奉,可吹牛的內容都是我干的础淤。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼哨苛,長吁一口氣:“原來是場噩夢啊……” “哼值骇!你這毒婦竟也來了?” 一聲冷哼從身側響起移国,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤吱瘩,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后迹缀,有當地人在樹林里發(fā)現了一具尸體使碾,經...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年祝懂,在試婚紗的時候發(fā)現自己被綠了票摇。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡砚蓬,死狀恐怖矢门,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情灰蛙,我是刑警寧澤祟剔,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站摩梧,受9級特大地震影響物延,放射性物質發(fā)生泄漏。R本人自食惡果不足惜仅父,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一叛薯、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧笙纤,春花似錦耗溜、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蓉冈,卻和暖如春城舞,著一層夾襖步出監(jiān)牢的瞬間轩触,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工家夺, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留脱柱,地道東北人。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓拉馋,卻偏偏與公主長得像榨为,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子煌茴,可洞房花燭夜當晚...
    茶點故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內容