在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

如何使用tensorflow快速搭建起一個(gè)深度學(xué)習(xí)項(xiàng)目

lviY_AI_shequ ? 來(lái)源:未知 ? 作者:李倩 ? 2018-10-25 08:57 ? 次閱讀

在上一講中,我們學(xué)習(xí)了如何利用numpy手動(dòng)搭建卷積神經(jīng)網(wǎng)絡(luò)。但在實(shí)際的圖像識(shí)別中,使用numpy去手寫 CNN 未免有些吃力不討好。在 DNN 的學(xué)習(xí)中,我們也是在手動(dòng)搭建之后利用Tensorflow去重新實(shí)現(xiàn)一遍,一來(lái)為了能夠?qū)ι窠?jīng)網(wǎng)絡(luò)的傳播機(jī)制能夠理解更加透徹,二來(lái)也是為了更加高效使用開(kāi)源框架快速搭建起深度學(xué)習(xí)項(xiàng)目。本節(jié)就繼續(xù)和大家一起學(xué)習(xí)如何利用Tensorflow搭建一個(gè)卷積神經(jīng)網(wǎng)絡(luò)。

我們繼續(xù)以 NG 課題組提供的 sign 手勢(shì)數(shù)據(jù)集為例,學(xué)習(xí)如何通過(guò)Tensorflow快速搭建起一個(gè)深度學(xué)習(xí)項(xiàng)目。數(shù)據(jù)集標(biāo)簽共有零到五總共 6 類標(biāo)簽,示例如下:

先對(duì)數(shù)據(jù)進(jìn)行簡(jiǎn)單的預(yù)處理并查看訓(xùn)練集和測(cè)試集維度:

X_train = X_train_orig/255.X_test = X_test_orig/255.Y_train = convert_to_one_hot(Y_train_orig, 6).T Y_test = convert_to_one_hot(Y_test_orig, 6).Tprint ("number of training examples = " + str(X_train.shape[0]))print ("number of test examples = " + str(X_test.shape[0]))print ("X_train shape: " + str(X_train.shape))print ("Y_train shape: " + str(Y_train.shape))print ("X_test shape: " + str(X_test.shape))print ("Y_test shape: " + str(Y_test.shape))

可見(jiàn)我們總共有 1080 張 64643 訓(xùn)練集圖像,120 張 64643 的測(cè)試集圖像,共有 6 類標(biāo)簽。下面我們開(kāi)始搭建過(guò)程。

創(chuàng)建placeholder

首先需要為訓(xùn)練集預(yù)測(cè)變量和目標(biāo)變量創(chuàng)建占位符變量placeholder,定義創(chuàng)建占位符變量函數(shù):

def create_placeholders(n_H0, n_W0, n_C0, n_y): """ Creates the placeholders for the tensorflow session. Arguments: n_H0 -- scalar, height of an input image n_W0 -- scalar, width of an input image n_C0 -- scalar, number of channels of the input n_y -- scalar, number of classes Returns: X -- placeholder for the data input, of shape [None, n_H0, n_W0, n_C0] and dtype "float" Y -- placeholder for the input labels, of shape [None, n_y] and dtype "float" """ X = tf.placeholder(tf.float32, shape=(None, n_H0, n_W0, n_C0), name='X') Y = tf.placeholder(tf.float32, shape=(None, n_y), name='Y') return X, Y

參數(shù)初始化

然后需要對(duì)濾波器權(quán)值參數(shù)進(jìn)行初始化:

def initialize_parameters(): """ Initializes weight parameters to build a neural network with tensorflow. Returns: parameters -- a dictionary of tensors containing W1, W2 """ tf.set_random_seed(1) W1 = tf.get_variable("W1", [4,4,3,8], initializer = tf.contrib.layers.xavier_initializer(seed = 0)) W2 = tf.get_variable("W2", [2,2,8,16], initializer = tf.contrib.layers.xavier_initializer(seed = 0)) parameters = {"W1": W1, "W2": W2} return parameters

執(zhí)行卷積網(wǎng)絡(luò)的前向傳播過(guò)程

前向傳播過(guò)程如下所示:CONV2D -> RELU -> MAXPOOL -> CONV2D -> RELU -> MAXPOOL -> FLATTEN -> FULLYCONNECTED

可見(jiàn)我們要搭建的是一個(gè)典型的 CNN 過(guò)程,經(jīng)過(guò)兩次的卷積-relu激活-最大池化,然后展開(kāi)接上一個(gè)全連接層。利用Tensorflow搭建上述傳播過(guò)程如下:

def forward_propagation(X, parameters): """ Implements the forward propagation for the model Arguments: X -- input dataset placeholder, of shape (input size, number of examples) parameters -- python dictionary containing your parameters "W1", "W2" the shapes are given in initialize_parameters Returns: Z3 -- the output of the last LINEAR unit """ # Retrieve the parameters from the dictionary "parameters" W1 = parameters['W1'] W2 = parameters['W2'] # CONV2D: stride of 1, padding 'SAME' Z1 = tf.nn.conv2d(X,W1, strides = [1,1,1,1], padding = 'SAME') # RELU A1 = tf.nn.relu(Z1) # MAXPOOL: window 8x8, sride 8, padding 'SAME' P1 = tf.nn.max_pool(A1, ksize = [1,8,8,1], strides = [1,8,8,1], padding = 'SAME') # CONV2D: filters W2, stride 1, padding 'SAME' Z2 = tf.nn.conv2d(P1,W2, strides = [1,1,1,1], padding = 'SAME') # RELU A2 = tf.nn.relu(Z2) # MAXPOOL: window 4x4, stride 4, padding 'SAME' P2 = tf.nn.max_pool(A2, ksize = [1,4,4,1], strides = [1,4,4,1], padding = 'SAME') # FLATTEN P2 = tf.contrib.layers.flatten(P2) Z3 = tf.contrib.layers.fully_connected(P2, 6, activation_fn = None) return Z3

計(jì)算當(dāng)前損失

在Tensorflow中計(jì)算損失函數(shù)非常簡(jiǎn)單,一行代碼即可:

def compute_cost(Z3, Y): """ Computes the cost Arguments: Z3 -- output of forward propagation (output of the last LINEAR unit), of shape (6, number of examples) Y -- "true" labels vector placeholder, same shape as Z3 Returns: cost - Tensor of the cost function """ cost = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=Z3, labels=Y)) return cost

定義好上述過(guò)程之后,就可以封裝整體的訓(xùn)練過(guò)程模型。可能你會(huì)問(wèn)為什么沒(méi)有反向傳播,這里需要注意的是Tensorflow幫助我們自動(dòng)封裝好了反向傳播過(guò)程,無(wú)需我們?cè)俅味x,在實(shí)際搭建過(guò)程中我們只需將前向傳播的網(wǎng)絡(luò)結(jié)構(gòu)定義清楚即可。

封裝模型

def model(X_train, Y_train, X_test, Y_test, learning_rate = 0.009, num_epochs = 100, minibatch_size = 64, print_cost = True): """ Implements a three-layer ConvNet in Tensorflow: CONV2D -> RELU -> MAXPOOL -> CONV2D -> RELU -> MAXPOOL -> FLATTEN -> FULLYCONNECTED Arguments: X_train -- training set, of shape (None, 64, 64, 3) Y_train -- test set, of shape (None, n_y = 6) X_test -- training set, of shape (None, 64, 64, 3) Y_test -- test set, of shape (None, n_y = 6) learning_rate -- learning rate of the optimization num_epochs -- number of epochs of the optimization loop minibatch_size -- size of a minibatch print_cost -- True to print the cost every 100 epochs Returns: train_accuracy -- real number, accuracy on the train set (X_train) test_accuracy -- real number, testing accuracy on the test set (X_test) parameters -- parameters learnt by the model. They can then be used to predict. """ ops.reset_default_graph() tf.set_random_seed(1) seed = 3 (m, n_H0, n_W0, n_C0) = X_train.shape n_y = Y_train.shape[1] costs = [] # Create Placeholders of the correct shape X, Y = create_placeholders(n_H0, n_W0, n_C0, n_y) # Initialize parameters parameters = initialize_parameters() # Forward propagation Z3 = forward_propagation(X, parameters) # Cost function cost = compute_cost(Z3, Y) # Backpropagation optimizer = tf.train.AdamOptimizer(learning_rate = learning_rate).minimize(cost) # Initialize all the variables globally init = tf.global_variables_initializer() # Start the session to compute the tensorflow graph with tf.Session() as sess: # Run the initialization sess.run(init) # Do the training loop for epoch in range(num_epochs): minibatch_cost = 0. num_minibatches = int(m / minibatch_size) seed = seed + 1 minibatches = random_mini_batches(X_train, Y_train, minibatch_size, seed) for minibatch in minibatches: # Select a minibatch (minibatch_X, minibatch_Y) = minibatch _ , temp_cost = sess.run([optimizer, cost], feed_dict={X: minibatch_X, Y: minibatch_Y}) minibatch_cost += temp_cost / num_minibatches # Print the cost every epoch if print_cost == True and epoch % 5 == 0: print ("Cost after epoch %i: %f" % (epoch, minibatch_cost)) if print_cost == True and epoch % 1 == 0: costs.append(minibatch_cost) # plot the cost plt.plot(np.squeeze(costs)) plt.ylabel('cost') plt.xlabel('iterations (per tens)') plt.title("Learning rate =" + str(learning_rate)) plt.show() # Calculate the correct predictions predict_op = tf.argmax(Z3, 1) correct_prediction = tf.equal(predict_op, tf.argmax(Y, 1)) # Calculate accuracy on the test set accuracy = tf.reduce_mean(tf.cast(correct_prediction, "float")) print(accuracy) train_accuracy = accuracy.eval({X: X_train, Y: Y_train}) test_accuracy = accuracy.eval({X: X_test, Y: Y_test}) print("Train Accuracy:", train_accuracy) print("Test Accuracy:", test_accuracy) return train_accuracy, test_accuracy, parameters

對(duì)訓(xùn)練集執(zhí)行模型訓(xùn)練:

_, _, parameters = model(X_train, Y_train, X_test, Y_test)

訓(xùn)練迭代過(guò)程如下:

我們?cè)谟?xùn)練集上取得了 0.67 的準(zhǔn)確率,在測(cè)試集上的預(yù)測(cè)準(zhǔn)確率為 0.58 ,雖然效果并不顯著,模型也有待深度調(diào)優(yōu),但我們已經(jīng)學(xué)會(huì)了如何用Tensorflow快速搭建起一個(gè)深度學(xué)習(xí)系統(tǒng)了。

注:本深度學(xué)習(xí)筆記系作者學(xué)習(xí) Andrew NG 的 deeplearningai 五門課程所記筆記,其中代碼為每門課的課后assignments作業(yè)整理而成。

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴

原文標(biāo)題:深度學(xué)習(xí)筆記12:卷積神經(jīng)網(wǎng)絡(luò)的Tensorflow實(shí)現(xiàn)

文章出處:【微信號(hào):AI_shequ,微信公眾號(hào):人工智能愛(ài)好者社區(qū)】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    GPU深度學(xué)習(xí)應(yīng)用案例

    能力,可以顯著提高圖像識(shí)別模型的訓(xùn)練速度和準(zhǔn)確性。例如,在人臉識(shí)別、自動(dòng)駕駛等領(lǐng)域,GPU被廣泛應(yīng)用于加速深度學(xué)習(xí)模型的訓(xùn)練和推理過(guò)程。 二、自然語(yǔ)言處理 自然語(yǔ)言處理(NLP)是深度學(xué)習(xí)
    的頭像 發(fā)表于 10-27 11:13 ?511次閱讀

    FPGA加速深度學(xué)習(xí)模型的案例

    FPGA(現(xiàn)場(chǎng)可編程門陣列)加速深度學(xué)習(xí)模型是當(dāng)前硬件加速領(lǐng)域的個(gè)熱門研究方向。以下是些FPGA加速
    的頭像 發(fā)表于 10-25 09:22 ?363次閱讀

    pytorch環(huán)境搭建詳細(xì)步驟

    PyTorch作為個(gè)廣泛使用的深度學(xué)習(xí)框架,其環(huán)境搭建對(duì)于從事機(jī)器學(xué)習(xí)
    的頭像 發(fā)表于 08-01 15:38 ?968次閱讀

    PyTorch深度學(xué)習(xí)開(kāi)發(fā)環(huán)境搭建指南

    PyTorch作為種流行的深度學(xué)習(xí)框架,其開(kāi)發(fā)環(huán)境的搭建對(duì)于深度學(xué)習(xí)研究者和開(kāi)發(fā)者來(lái)說(shuō)至關(guān)重要
    的頭像 發(fā)表于 07-16 18:29 ?1284次閱讀

    TensorFlow是什么?TensorFlow怎么用?

    TensorFlow是由Google開(kāi)發(fā)的個(gè)開(kāi)源深度學(xué)習(xí)框架,它允許開(kāi)發(fā)者方便地構(gòu)建、訓(xùn)練和部署各種復(fù)雜的機(jī)器
    的頭像 發(fā)表于 07-12 16:38 ?823次閱讀

    tensorflow和pytorch哪個(gè)更簡(jiǎn)單?

    PyTorch更簡(jiǎn)單。選擇TensorFlow還是PyTorch取決于您的具體需求和偏好。如果您需要個(gè)易于使用、靈活且具有強(qiáng)大社區(qū)支持的框架,PyTorch可能是
    的頭像 發(fā)表于 07-05 09:45 ?985次閱讀

    tensorflow和pytorch哪個(gè)好

    :2015年由Google Brain團(tuán)隊(duì)發(fā)布。 語(yǔ)言支持 :主要使用Python,也支持C++、Java等。 設(shè)計(jì)哲學(xué) :TensorFlow個(gè)端到端的機(jī)器學(xué)習(xí)平臺(tái),支持從研究
    的頭像 發(fā)表于 07-05 09:42 ?776次閱讀

    tensorflow簡(jiǎn)單的模型訓(xùn)練

    在本文中,我們將詳細(xì)介紹如何使用TensorFlow進(jìn)行簡(jiǎn)單的模型訓(xùn)練。TensorFlow個(gè)開(kāi)源的機(jī)器學(xué)習(xí)庫(kù),廣泛用于各種機(jī)器
    的頭像 發(fā)表于 07-05 09:38 ?789次閱讀

    keras模型轉(zhuǎn)tensorflow session

    和訓(xùn)練深度學(xué)習(xí)模型。Keras是基于TensorFlow、Theano或CNTK等底層計(jì)算框架構(gòu)建的。TensorFlow
    的頭像 發(fā)表于 07-05 09:36 ?596次閱讀

    keras的模塊結(jié)構(gòu)介紹

    Keras是個(gè)高級(jí)深度學(xué)習(xí)庫(kù),它提供了個(gè)易于使用的接口來(lái)構(gòu)建和訓(xùn)練
    的頭像 發(fā)表于 07-05 09:35 ?423次閱讀

    基于深度學(xué)習(xí)的小目標(biāo)檢測(cè)

    在計(jì)算機(jī)視覺(jué)領(lǐng)域,目標(biāo)檢測(cè)直是研究的熱點(diǎn)和難點(diǎn)之。特別是在小目標(biāo)檢測(cè)方面,由于小目標(biāo)在圖像中所占比例小、特征不明顯,使得檢測(cè)難度顯著增加。隨著深度學(xué)習(xí)技術(shù)的
    的頭像 發(fā)表于 07-04 17:25 ?1061次閱讀

    如何使用Tensorflow保存或加載模型

    TensorFlow個(gè)廣泛使用的開(kāi)源機(jī)器學(xué)習(xí)庫(kù),它提供了豐富的API來(lái)構(gòu)建和訓(xùn)練各種深度學(xué)習(xí)
    的頭像 發(fā)表于 07-04 13:07 ?1718次閱讀

    TensorFlow的定義和使用方法

    TensorFlow個(gè)由谷歌人工智能團(tuán)隊(duì)谷歌大腦(Google Brain)開(kāi)發(fā)和維護(hù)的開(kāi)源機(jī)器學(xué)習(xí)庫(kù)。它基于數(shù)據(jù)流編程(dataflow programming)的概念,將復(fù)雜的
    的頭像 發(fā)表于 07-02 14:14 ?898次閱讀

    TensorFlow與PyTorch深度學(xué)習(xí)框架的比較與選擇

    深度學(xué)習(xí)作為人工智能領(lǐng)域的個(gè)重要分支,在過(guò)去十年中取得了顯著的進(jìn)展。在構(gòu)建和訓(xùn)練深度學(xué)習(xí)模型的
    的頭像 發(fā)表于 07-02 14:04 ?1083次閱讀

    FPGA在深度學(xué)習(xí)應(yīng)用中或?qū)⑷〈鶪PU

    ,這使得它比般處理器更高效。但是,很難對(duì) FPGA 進(jìn)行編程,Larzul 希望通過(guò)自己公司開(kāi)發(fā)的新平臺(tái)解決這個(gè)問(wèn)題。 專業(yè)的人工智能硬件已經(jīng)成為了個(gè)獨(dú)立的產(chǎn)業(yè),但對(duì)于什么是深度
    發(fā)表于 03-21 15:19
    主站蜘蛛池模板: 美女视频黄又黄又免费高清 | 黄色大片网 | 综合久久99| 国产亚洲精品激情都市 | 国产真实乱在线更新 | 中文字幕亚洲一区婷婷 | 最新版天堂资源官网 | 免费啪啪小视频 | 久草毛片| 天天精品视频在线观看资源 | 色多多在线观看 | 黄色网址你懂得 | 免费的三及片 | 欧美一区二区三区视频 | 特黄aaaaaa久久片 | 激激婷婷综合五 | 一区二区三区四区视频在线观看 | 超级乱淫片67194免费看 | 国产精品a在线观看香蕉 | 欧美极品一区 | 欧美成人伊人久久综合网 | 亚洲不卡视频在线 | 国产农村女人一级毛片了 | 亚洲国产精品久久精品怡红院 | 欧美一级做一级做片性十三 | 午夜色视频在线观看 | 毛片观看网址 | 最近在线视频免费观看2019 | 韩国朴银狐诱感在线观看 | 特黄特色的视频免费播放 | 国产精品你懂的在线播放 | 亚洲第一成年网 | 色婷婷影院在线视频免费播放 | 午夜视频在线观看免费观看在线观看 | 三级黄色片免费观看 | 亚洲精品色一区色二区色三区 | 丁香五香天堂网卡 | h黄视频 | 91md天美精东蜜桃传媒在线 | 国产精品一区在线观看你懂的 | 激情综合六月 |