chinese直男口爆体育生外卖, 99久久er热在这里只有精品99, 又色又爽又黄18禁美女裸身无遮挡, gogogo高清免费观看日本电视,私密按摩师高清版在线,人妻视频毛茸茸,91论坛 兴趣闲谈,欧美 亚洲 精品 8区,国产精品久久久久精品免费

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

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

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

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

lviY_AI_shequ ? 來源:未知 ? 作者:李倩 ? 2018-10-25 08:57 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

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

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

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

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

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

創(chuàng)建placeholder

首先需要為訓(xùn)練集預(yù)測變量和目標(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ù)初始化

然后需要對濾波器權(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ò)的前向傳播過程

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

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

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

計算當(dāng)前損失

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

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

定義好上述過程之后,就可以封裝整體的訓(xùn)練過程模型??赡苣銜枮槭裁礇]有反向傳播,這里需要注意的是Tensorflow幫助我們自動封裝好了反向傳播過程,無需我們再次定義,在實際搭建過程中我們只需將前向傳播的網(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

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

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

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

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

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

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

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

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

收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關(guān)推薦
    熱點推薦

    人工智能AI必備的5款開源軟件推薦!

    開發(fā)領(lǐng)域里幾乎“人手必備”的軟件——它們不僅讓學(xué)習(xí)更輕松,也讓產(chǎn)品更快落地。 、TensorFlow深度學(xué)習(xí)界的“老將” 提起智能算法的
    的頭像 發(fā)表于 11-19 15:35 ?117次閱讀
    人工智能AI必備的5款開源軟件推薦!

    分享嵌入式學(xué)習(xí)階段規(guī)劃

    給大家分享嵌入式學(xué)習(xí)階段規(guī)劃: ()基礎(chǔ)筑牢階段(約 23 天) 核心目標(biāo):打牢 C 語言、數(shù)據(jù)結(jié)構(gòu)、電路基礎(chǔ)C 語言開發(fā):學(xué)變量 / 指針 / 結(jié)構(gòu)體等核心語法,用 Dev-
    發(fā)表于 09-12 15:11

    深度學(xué)習(xí)對工業(yè)物聯(lián)網(wǎng)有哪些幫助

    、實施路徑三維度展開分析: 、深度學(xué)習(xí)如何突破工業(yè)物聯(lián)網(wǎng)的技術(shù)瓶頸? 1. 非結(jié)構(gòu)化數(shù)據(jù)處理:解鎖“沉睡數(shù)據(jù)”價值 傳統(tǒng)困境 :工業(yè)物聯(lián)網(wǎng)中70%以上的數(shù)據(jù)為非結(jié)構(gòu)化數(shù)據(jù)(如設(shè)備振
    的頭像 發(fā)表于 08-20 14:56 ?738次閱讀

    自動駕駛中Transformer大模型會取代深度學(xué)習(xí)嗎?

    [首發(fā)于智駕最前沿微信公眾號]近年來,隨著ChatGPT、Claude、文心言等大語言模型在生成文本、對話交互等領(lǐng)域的驚艷表現(xiàn),“Transformer架構(gòu)是否正在取代傳統(tǒng)深度學(xué)習(xí)”這
    的頭像 發(fā)表于 08-13 09:15 ?3894次閱讀
    自動駕駛中Transformer大模型會取代<b class='flag-5'>深度</b><b class='flag-5'>學(xué)習(xí)</b>嗎?

    任正非說 AI已經(jīng)確定是第四次工業(yè)革命 那么如何從容地加入進(jìn)來呢?

    GitHub等平臺上尋找感興趣的AI開源項目。例如,可以參與些小型的深度學(xué)習(xí)框架改進(jìn)項目,或者數(shù)據(jù)標(biāo)注工具的開發(fā)
    發(fā)表于 07-08 17:44

    恒訊科技分析:云儲存服務(wù)器搭建教程

    搭建云存儲服務(wù)器是相對復(fù)雜但極具實用性的項目,以下是簡化的
    的頭像 發(fā)表于 07-07 11:07 ?1043次閱讀

    HarmonyOS實戰(zhàn):組件化項目搭建

    ?本文將詳細(xì)講解HarmonyOs組件化項目搭建的全過程,帶領(lǐng)大家實現(xiàn)組件化項目。 項目創(chuàng)建
    的頭像 發(fā)表于 06-09 14:58 ?501次閱讀
    HarmonyOS實戰(zhàn):組件化<b class='flag-5'>項目</b><b class='flag-5'>搭建</b>

    SOLIDWORKS 2025教育版:緊密的產(chǎn)學(xué)研合作,搭建理論與實踐的橋梁

    在工程技術(shù)教育領(lǐng)域,理論與實踐的結(jié)合直是培養(yǎng)高素質(zhì)人才的關(guān)鍵。SOLIDWORKS 2025教育版作為款CAD軟件,通過緊密的產(chǎn)學(xué)研合作,成功搭建起了理論與實踐之間的橋梁,為學(xué)生、教師和行業(yè)專家提供了
    的頭像 發(fā)表于 03-26 17:21 ?584次閱讀
    SOLIDWORKS 2025教育版:緊密的產(chǎn)學(xué)研合作,<b class='flag-5'>搭建</b>理論與實踐的橋梁

    用樹莓派搞深度學(xué)習(xí)?TensorFlow啟動!

    介紹本頁面將指導(dǎo)您在搭載64位Bullseye操作系統(tǒng)的RaspberryPi4上安裝TensorFlow。TensorFlow專為深度
    的頭像 發(fā)表于 03-25 09:33 ?929次閱讀
    用樹莓派搞<b class='flag-5'>深度</b><b class='flag-5'>學(xué)習(xí)</b>?<b class='flag-5'>TensorFlow</b>啟動!

    如何排除深度學(xué)習(xí)工作臺上量化OpenVINO?的特定層?

    無法確定如何排除要在深度學(xué)習(xí)工作臺上量化OpenVINO?特定層
    發(fā)表于 03-06 07:31

    軍事應(yīng)用中深度學(xué)習(xí)的挑戰(zhàn)與機遇

    ,并廣泛介紹了深度學(xué)習(xí)在兩主要軍事應(yīng)用領(lǐng)域的應(yīng)用:情報行動和自主平臺。最后,討論了相關(guān)的威脅、機遇、技術(shù)和實際困難。主要發(fā)現(xiàn)是,人工智能技術(shù)并非無所不能,需要謹(jǐn)慎應(yīng)用,同時考慮到其局限性、網(wǎng)絡(luò)安全威脅以及
    的頭像 發(fā)表于 02-14 11:15 ?810次閱讀

    BP神經(jīng)網(wǎng)絡(luò)與深度學(xué)習(xí)的關(guān)系

    ),是種多層前饋神經(jīng)網(wǎng)絡(luò),它通過反向傳播算法進(jìn)行訓(xùn)練。BP神經(jīng)網(wǎng)絡(luò)由輸入層、或多個隱藏層和輸出層組成,通過逐層遞減的方式調(diào)整網(wǎng)絡(luò)權(quán)重,目的是最小化網(wǎng)絡(luò)的輸出誤差。 二、深度
    的頭像 發(fā)表于 02-12 15:15 ?1323次閱讀

    【ELF 2學(xué)習(xí)板試用】ELF2開發(fā)板(飛凌嵌入式)搭建深度學(xué)習(xí)環(huán)境部署(RKNN環(huán)境部署)

    用戶部署使用 RKNN Toolkit2導(dǎo)出的 RKNN 模型,從而加速 AI 應(yīng)用的落地。 RKNPU2 的架構(gòu)設(shè)計目標(biāo)是優(yōu)化深度學(xué)習(xí)模型的執(zhí)行效率,其核心是專門為機器
    發(fā)表于 02-04 14:15

    基于華為云 Flexus 云服務(wù)器 X 實例搭建 Linux 學(xué)習(xí)環(huán)境

    不僅提供了強大的計算資源,還擁有靈活的擴展能力和穩(wěn)定的運行表現(xiàn),為用戶提供了可靠的技術(shù)支撐。特別是對于那些希望快速搭建 Linux 學(xué)習(xí)環(huán)境的用戶來說,華為云 Flexus 云服務(wù)器 X 實例是
    的頭像 發(fā)表于 12-25 17:10 ?893次閱讀
    基于華為云 Flexus 云服務(wù)器 X 實例<b class='flag-5'>搭建</b> Linux <b class='flag-5'>學(xué)習(xí)</b>環(huán)境

    搭建基于1298的采集系統(tǒng),如果要增加抗電刀干擾的能力,請問難度大不大?

    你好,我們在評估關(guān)于手術(shù)室監(jiān)護(hù)的項目,考慮采用ADS1298/1299的方案,我們目前已搭建起基于1298的采集系統(tǒng),如果要增加抗電刀干擾的能力,請問難度大不大,還有多少工作要做
    發(fā)表于 12-05 06:24