當(dāng)前位置:首頁 > 智能硬件 > 人工智能AI
[導(dǎo)讀] 前面幾篇文章講到了卷積神經(jīng)網(wǎng)絡(luò)CNN,但是對于它在每一層提取到的特征以及訓(xùn)練的過程可能還是不太明白,所以這節(jié)主要通過模型的可視化來神經(jīng)網(wǎng)絡(luò)在每一層中是如何訓(xùn)練的。我們知道,神經(jīng)網(wǎng)絡(luò)本身包含了一系

前面幾篇文章講到了卷積神經(jīng)網(wǎng)絡(luò)CNN,但是對于它在每一層提取到的特征以及訓(xùn)練的過程可能還是不太明白,所以這節(jié)主要通過模型的可視化來神經(jīng)網(wǎng)絡(luò)在每一層中是如何訓(xùn)練的。我們知道,神經(jīng)網(wǎng)絡(luò)本身包含了一系列特征提取器,理想的feature map應(yīng)該是稀疏的以及包含典型的局部信息。通過模型可視化能有一些直觀的認(rèn)識并幫助我們調(diào)試模型,比如:feature map與原圖很接近,說明它沒有學(xué)到什么特征;或者它幾乎是一個純色的圖,說明它太過稀疏,可能是我們feature map數(shù)太多了(feature_map數(shù)太多也反映了卷積核太?。???梢暬泻芏喾N,比如:feature map可視化、權(quán)重可視化等等,我以feature map可視化為例。

模型可視化

因?yàn)槲覜]有搜到用paddlepaddle在imagenet 1000分類的數(shù)據(jù)集上預(yù)訓(xùn)練好的googLeNet incepTIon v3,所以用了keras做實(shí)驗(yàn),以下圖作為輸入:

輸入圖片

北汽紳寶D50:

feature map可視化

取網(wǎng)絡(luò)的前15層,每層取前3個feature map。

北汽紳寶D50 feature map:

從左往右看,可以看到整個特征提取的過程,有的分離背景、有的提取輪廓,有的提取色差,但也能發(fā)現(xiàn)10、11層中間兩個feature map是純色的,可能這一層feature map數(shù)有點(diǎn)多了,另外北汽紳寶D50的光暈對feature map中光暈的影響也能比較明顯看到。

Hypercolumns 通常我們把神經(jīng)網(wǎng)絡(luò)最后一個fc全連接層作為整個圖片的特征表示,但是這一表示可能過于粗糙(從上面的feature map可視化也能看出來),沒法精確描述局部空間上的特征,而網(wǎng)絡(luò)的第一層空間特征又太過精確,缺乏語義信息(比如后面的色差、輪廓等),于是論文《Hypercolumns for Object SegmentaTIon and Fine-grained LocalizaTIon》提出一種新的特征表示方法:Hypercolumns——將一個像素的 hypercolumn 定義為所有 cnn 單元對應(yīng)該像素位置的激活輸出值組成的向量),比較好的tradeoff了前面兩個問題,直觀地看如圖:

把北汽紳寶D50 第1、4、7層的feature map以及第1, 4, 7, 10, 11, 14, 17層的feature map分別做平均,可視化如下:

代碼實(shí)踐

# -*- coding: utf-8 -*-

from keras.applicaTIons import InceptionV3

from keras.applications.inception_v3 import preprocess_input

from keras.preprocessing import image

from keras.models import Model

from keras.applications.imagenet_utils import decode_predictions

import numpy as np

import cv2

from cv2 import *

import matplotlib.pyplot as plt

import scipy as sp

from scipy.misc import toimage

def test_opencv():

# 加載攝像頭

cam = VideoCapture(0) # 0 -> 攝像頭序號,如果有兩個三個四個攝像頭,要調(diào)用哪一個數(shù)字往上加嘛

# 抓拍 5 張小圖片

for x in range(0, 5):

s, img = cam.read()

if s:

imwrite("o-" + str(x) + ".jpg", img)

def load_original(img_path):

# 把原始圖片壓縮為 299*299大小

im_original = cv2.resize(cv2.imread(img_path), (299, 299))

im_converted = cv2.cvtColor(im_original, cv2.COLOR_BGR2RGB)

plt.figure(0)

plt.subplot(211)

plt.imshow(im_converted)

return im_original

def load_fine_tune_googlenet_v3(img):

# 加載fine-tuning googlenet v3模型,并做預(yù)測

model = InceptionV3(include_top=True, weights='imagenet')

model.summary()

x = image.img_to_array(img)

x = np.expand_dims(x, axis=0)

x = preprocess_input(x)

preds = model.predict(x)

print('Predicted:', decode_predictions(preds))

plt.subplot(212)

plt.plot(preds.ravel())

plt.show()

return model, x

def extract_features(ins, layer_id, filters, layer_num):

'''

提取指定模型指定層指定數(shù)目的feature map并輸出到一幅圖上.

:param ins: 模型實(shí)例

:param layer_id: 提取指定層特征

:param filters: 每層提取的feature map數(shù)

:param layer_num: 一共提取多少層feature map

:return: None

'''

if len(ins) != 2:

print('parameter error:(model, instance)')

return None

model = ins[0]

x = ins[1]

if type(layer_id) == type(1):

model_extractfeatures = Model(input=model.input, output=model.get_layer(index=layer_id).output)

else:

model_extractfeatures = Model(input=model.input, output=model.get_layer(name=layer_id).output)

fc2_features = model_extractfeatures.predict(x)

if filters > len(fc2_features[0][0][0]):

print('layer number error.', len(fc2_features[0][0][0]),',',filters)

return None

for i in range(filters):

plt.subplots_adjust(left=0, right=1, bottom=0, top=1)

plt.subplot(filters, layer_num, layer_id + 1 + i * layer_num)

plt.axis("off")

if i < len(fc2_features[0][0][0]):

plt.imshow(fc2_features[0, :, :, i])

# 層數(shù)、模型、卷積核數(shù)

def extract_features_batch(layer_num, model, filters):

'''

批量提取特征

:param layer_num: 層數(shù)

:param model: 模型

:param filters: feature map數(shù)

:return: None

'''

plt.figure(figsize=(filters, layer_num))

plt.subplot(filters, layer_num, 1)

for i in range(layer_num):

extract_features(model, i, filters, layer_num)

plt.savefig('sample.jpg')

plt.show()

def extract_features_with_layers(layers_extract):

'''

提取hypercolumn并可視化.

:param layers_extract: 指定層列表

:return: None

'''

hc = extract_hypercolumn(x[0], layers_extract, x[1])

ave = np.average(hc.transpose(1, 2, 0), axis=2)

plt.imshow(ave)

plt.show()

def extract_hypercolumn(model, layer_indexes, instance):

'''

提取指定模型指定層的hypercolumn向量

:param model: 模型

:param layer_indexes: 層id

:param instance: 模型

:return:

'''

feature_maps = []

for i in layer_indexes:

feature_maps.append(Model(input=model.input, output=model.get_layer(index=i).output).predict(instance))

hypercolumns = []

for convmap in feature_maps:

for i in convmap[0][0][0]:

upscaled = sp.misc.imresize(convmap[0, :, :, i], size=(299, 299), mode="F", interp='bilinear')

hypercolumns.append(upscaled)

return np.asarray(hypercolumns)

if __name__ == '__main__':

img_path = '~/auto1.jpg'

img = load_original(img_path)

x = load_fine_tune_googlenet_v3(img)

extract_features_batch(15, x, 3)

extract_features_with_layers([1, 4, 7])

extract_features_with_layers([1, 4, 7, 10, 11, 14, 17])

總結(jié)

還有一些網(wǎng)站做的關(guān)于CNN的可視化做的非常不錯,譬如這個網(wǎng)站:http://shixialiu.com/publications/cnnvis/demo/,大家可以在訓(xùn)練的時候采取不同的卷積核尺寸和個數(shù)對照來看訓(xùn)練的中間過程。最近PaddlePaddle也開源了可視化工具VisaulDL,下篇文章我們講講paddlepaddle的visualDL和tesorflow的tensorboard。

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險,如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術(shù)學(xué)會聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉