Caffe2 載入預(yù)訓(xùn)練模型(Loading Pre-Trained Models)[7]

這一節(jié)我們主要講述如何使用預(yù)訓(xùn)練模型。Ipython notebook鏈接在這里揪阿。

模型下載

你可以去Model Zoo下載預(yù)訓(xùn)練好的模型疗我,或者使用Caffe2的models.download模塊獲取預(yù)訓(xùn)練的模型。caffe2.python.models.download需要模型的名字所謂參數(shù)南捂。你可以去看看有什么模型可用吴裤,然后替換下面代碼中的squeezenet

python -m caffe2.python.models.download -i squeezenet

譯者注:如果不明白為什么用python -m 執(zhí)行溺健,可以看看這個(gè)帖子麦牺。
如果上面下載成功,那么你應(yīng)該下載了 squeezenet到你的文件夾中鞭缭。如果你使用i那么模型文件將下載到/caffe2/python/models文件夾中剖膳。當(dāng)然,你也可以下載所有模型文件:git clone https://github.com/caffe2/models岭辣。

Overview

在這個(gè)教程中吱晒,我們將會(huì)使用squeezenet模型進(jìn)行圖片的目標(biāo)識(shí)別。如果沦童,你讀了前面的預(yù)處理章節(jié)仑濒,那么你會(huì)看到我們使用rescale和crop對(duì)圖像進(jìn)行處理叹话。同時(shí)做了CHW和BGR的轉(zhuǎn)換,最后的圖像數(shù)據(jù)是NCHW躏精。我們也統(tǒng)計(jì)了圖像均值渣刷,而不是簡(jiǎn)單地將圖像減去128.
你會(huì)發(fā)現(xiàn)載入預(yù)處理模型是相當(dāng)簡(jiǎn)單的鹦肿,僅僅需要幾行代碼就可以了矗烛。

  1. 讀取protobuf文件
with open("init_net.pb") as f:
     init_net = f.read()
 with open("predict_net.pb") as f:
     predict_net = f.read()   
  1. 使用Predictor函數(shù)從protobuf中載入blobs數(shù)據(jù)
p = workspace.Predictor(init_net, predict_net)
  1. 跑網(wǎng)絡(luò)并獲取結(jié)果
results = p.run([img])

返回的結(jié)果是一個(gè)多維概率的矩陣,每一行是一個(gè)百分比箩溃,表示網(wǎng)絡(luò)識(shí)別出圖像屬于某一個(gè)物體的概率瞭吃。當(dāng)你使用前面那張花圖來(lái)測(cè)試時(shí),網(wǎng)絡(luò)的返回應(yīng)該告訴你超過(guò)95的概率是雛菊涣旨。

Configuration

網(wǎng)絡(luò)設(shè)置如下:

# 你安裝caffe2的路徑
CAFFE2_ROOT = "~/caffe2"
# 假設(shè)是caffe2的子目錄
CAFFE_MODELS = "~/caffe2/caffe2/python/models"
#如果你有mean file歪架,把它放在模型文件那個(gè)目錄里面
%matplotlib inline
from caffe2.proto import caffe2_pb2
import numpy as np
import skimage.io
import skimage.transform
from matplotlib import pyplot
import os
from caffe2.python import core, workspace
import urllib2
print("Required modules imported.")

傳遞圖像的路徑,或者網(wǎng)絡(luò)圖像的URL霹陡。物體編碼參照Alex Net,比如“985”代表是“雛菊”和蚪。其他編碼參照這里

IMAGE_LOCATION =  "https://cdn.pixabay.com/photo/2015/02/10/21/28/flower-631765_1280.jpg"

# 參數(shù)格式:  folder,      INIT_NET,          predict_net,         mean      , input image size
MODEL = 'squeezenet', 'init_net.pb', 'predict_net.pb', 'ilsvrc_2012_mean.npy', 227

# AlexNet的物體編碼
codes =  "https://gist.githubusercontent.com/aaronmarkham/cd3a6b6ac071eca6f7b4a6e40e6038aa/raw/9edb4038a37da6b5a44c3b5bc52e448ff09bfe5b/alexnet_codes"
print "Config set!"

處理圖像

def crop_center(img,cropx,cropy):
    y,x,c = img.shape
    startx = x//2-(cropx//2)
    starty = y//2-(cropy//2)    
    return img[starty:starty+cropy,startx:startx+cropx]

def rescale(img, input_height, input_width):
    print("Original image shape:" + str(img.shape) + " and remember it should be in H, W, C!")
    print("Model's input shape is %dx%d") % (input_height, input_width)
    aspect = img.shape[1]/float(img.shape[0])
    print("Orginal aspect ratio: " + str(aspect))
    if(aspect>1):
        # landscape orientation - wide image
        res = int(aspect * input_height)
        imgScaled = skimage.transform.resize(img, (input_width, res))
    if(aspect<1):
        # portrait orientation - tall image
        res = int(input_width/aspect)
        imgScaled = skimage.transform.resize(img, (res, input_height))
    if(aspect == 1):
        imgScaled = skimage.transform.resize(img, (input_width, input_height))
    pyplot.figure()
    pyplot.imshow(imgScaled)
    pyplot.axis('on')
    pyplot.title('Rescaled image')
    print("New image shape:" + str(imgScaled.shape) + " in HWC")
    return imgScaled
print "Functions set."

# set paths and variables from model choice and prep image
CAFFE2_ROOT = os.path.expanduser(CAFFE2_ROOT)
CAFFE_MODELS = os.path.expanduser(CAFFE_MODELS)

# 均值最好從訓(xùn)練集中計(jì)算得到
MEAN_FILE = os.path.join(CAFFE_MODELS, MODEL[0], MODEL[3])
if not os.path.exists(MEAN_FILE):
    mean = 128
else:
    mean = np.load(MEAN_FILE).mean(1).mean(1)
    mean = mean[:, np.newaxis, np.newaxis]
print "mean was set to: ", mean

# 輸入大小
INPUT_IMAGE_SIZE = MODEL[4]

# 確保所有文件存在
if not os.path.exists(CAFFE2_ROOT):
    print("Houston, you may have a problem.")
INIT_NET = os.path.join(CAFFE_MODELS, MODEL[0], MODEL[1])
print 'INIT_NET = ', INIT_NET
PREDICT_NET = os.path.join(CAFFE_MODELS, MODEL[0], MODEL[2])
print 'PREDICT_NET = ', PREDICT_NET
if not os.path.exists(INIT_NET):
    print(INIT_NET + " not found!")
else:
    print "Found ", INIT_NET, "...Now looking for", PREDICT_NET
    if not os.path.exists(PREDICT_NET):
        print "Caffe model file, " + PREDICT_NET + " was not found!"
    else:
        print "All needed files found! Loading the model in the next block."

#載入一張圖像
img = skimage.img_as_float(skimage.io.imread(IMAGE_LOCATION)).astype(np.float32)
img = rescale(img, INPUT_IMAGE_SIZE, INPUT_IMAGE_SIZE)
img = crop_center(img, INPUT_IMAGE_SIZE, INPUT_IMAGE_SIZE)
print "After crop: " , img.shape
pyplot.figure()
pyplot.imshow(img)
pyplot.axis('on')
pyplot.title('Cropped')

# 轉(zhuǎn)換為CHW
img = img.swapaxes(1, 2).swapaxes(0, 1)
pyplot.figure()
for i in range(3):
    pyplot.subplot(1, 3, i+1)
    pyplot.imshow(img[i])
    pyplot.axis('off')
    pyplot.title('RGB channel %d' % (i+1))

#轉(zhuǎn)換為BGR
img = img[(2, 1, 0), :, :]

# 減均值
img = img * 255 - mean

# 增加batch size
img = img[np.newaxis, :, :, :].astype(np.float32)
print "NCHW: ", img.shape

狀態(tài)輸出:

Functions set.
mean was set to:  128
INIT_NET =  /home/aaron/models/squeezenet/init_net.pb
PREDICT_NET =  /home/aaron/models/squeezenet/predict_net.pb
Found  /home/aaron/models/squeezenet/init_net.pb ...Now looking for /home/aaron/models/squeezenet/predict_net.pb
All needed files found! Loading the model in the next block.
Original image shape:(751, 1280, 3) and remember it should be in H, W, C!
Model's input shape is 227x227
Orginal aspect ratio: 1.70439414115
New image shape:(227, 386, 3) in HWC
After crop:  (227, 227, 3)
NCHW:  (1, 3, 227, 227)



既然圖像準(zhǔn)備好了烹棉,那么放進(jìn)CNN里面吧攒霹。打開protobuf,載入到workspace中浆洗,并跑起網(wǎng)絡(luò)催束。

#初始化網(wǎng)絡(luò)
with open(INIT_NET) as f:
    init_net = f.read()
with open(PREDICT_NET) as f:
    predict_net = f.read()
p = workspace.Predictor(init_net, predict_net)

# 進(jìn)行預(yù)測(cè)
results = p.run([img])

# 把結(jié)果轉(zhuǎn)換為np矩陣
results = np.asarray(results)
print "results shape: ", results.shape
results shape:  (1, 1, 1000, 1, 1)

看到1000沒。如果我們batch很大伏社,那么這個(gè)矩陣將會(huì)很大抠刺,但是中間的維度仍然是1000。它記錄著模型預(yù)測(cè)的每一個(gè)類別的概率≌現(xiàn)在速妖,讓我們繼續(xù)下一步。

results = np.delete(results, 1)#這句話不是很明白
index = 0
highest = 0
arr = np.empty((0,2), dtype=object)#創(chuàng)建一個(gè)0x2的矩陣聪黎?
arr[:,0] = int(10)#這是什么個(gè)意思买优?
arr[:,1:] = float(10)
for i, r in enumerate(results):
    # imagenet的索引從1開始
    i=i+1
    arr = np.append(arr, np.array([[i,r]]), axis=0)
    if (r > highest):
        highest = r
        index = i
print index, " :: ", highest
# top 3 結(jié)果
# sorted(arr, key=lambda x: x[1], reverse=True)[:3]

# 獲取 code list
response = urllib2.urlopen(codes)
for line in response:
    code, result = line.partition(":")[::2]
    if (code.strip() == str(index)):
        print result.strip()[1:-2]

最后輸出:

985  ::  0.979059
daisy

譯者注:上面最后一段處理結(jié)果的代碼,譯者也不是很明白挺举,有木有明白的同學(xué)在下面回復(fù)下杀赢?
轉(zhuǎn)載請(qǐng)注明出處:http://www.reibang.com/c/cf07b31bb5f2

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市湘纵,隨后出現(xiàn)的幾起案子脂崔,更是在濱河造成了極大的恐慌,老刑警劉巖梧喷,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件砌左,死亡現(xiàn)場(chǎng)離奇詭異脖咐,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)汇歹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門屁擅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人产弹,你說(shuō)我怎么就攤上這事派歌。” “怎么了痰哨?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵胶果,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我斤斧,道長(zhǎng)早抠,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任撬讽,我火速辦了婚禮蕊连,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘游昼。我一直安慰自己甘苍,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布酱床。 她就那樣靜靜地躺著羊赵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪扇谣。 梳的紋絲不亂的頭發(fā)上昧捷,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音罐寨,去河邊找鬼靡挥。 笑死,一個(gè)胖子當(dāng)著我的面吹牛鸯绿,可吹牛的內(nèi)容都是我干的跋破。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼瓶蝴,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼毒返!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起舷手,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤拧簸,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后男窟,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體盆赤,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡贾富,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了牺六。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片颤枪。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖淑际,靈堂內(nèi)的尸體忽然破棺而出畏纲,到底是詐尸還是另有隱情,我是刑警寧澤庸追,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布霍骄,位于F島的核電站台囱,受9級(jí)特大地震影響淡溯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜簿训,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一咱娶、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧强品,春花似錦膘侮、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至夫晌,卻和暖如春雕薪,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背晓淀。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工所袁, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人凶掰。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓燥爷,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親懦窘。 傳聞我的和親對(duì)象是個(gè)殘疾皇子前翎,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容