<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>機器學習 on G. T. Wang</title>
    <link>https://blog.gtwang.org/tags/%E6%A9%9F%E5%99%A8%E5%AD%B8%E7%BF%92/</link>
    <description>Recent content in 機器學習 on G. T. Wang</description>
    <generator>Hugo -- 0.156.0</generator>
    <language>zh-tw</language>
    <copyright>G. T. Wang</copyright>
    <lastBuildDate>Tue, 18 Sep 2018 11:20:29 +0800</lastBuildDate>
    <atom:link href="https://blog.gtwang.org/tags/%E6%A9%9F%E5%99%A8%E5%AD%B8%E7%BF%92/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Keras 以 ResNet-50 預訓練模型建立狗與貓辨識程式</title>
      <link>https://blog.gtwang.org/programming/keras-resnet-50-pre-trained-model-build-dogs-cats-image-classification-system/</link>
      <pubDate>Tue, 18 Sep 2018 11:20:29 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/keras-resnet-50-pre-trained-model-build-dogs-cats-image-classification-system/</guid>
      <description>&lt;p&gt;這裡示範在 Keras 架構下以 ResNet-50 預訓練模型為基礎，建立可用來辨識狗與貓的 AI 程式。&lt;/p&gt;
&lt;p&gt;在 &lt;a href=&#34;https://blog.keras.io/building-powerful-image-classification-models-using-very-little-data.html&#34;&gt;Keras 的部落格&lt;/a&gt;中示範了使用 VGG16 模型建立狗與貓的辨識程式，準確率大約為 94%，而這裡則是改用 ResNet50 模型為基礎，並將輸入影像尺寸提高為 224x224，加上大量的 data augmentation，結果可讓辨識的準確率達到 99%。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caire 完美改變圖片長寬比例工具，Seam Carving 演算法應用</title>
      <link>https://blog.gtwang.org/programming/caire-image-resize-library-based-on-seam-carving-algorithm/</link>
      <pubDate>Sun, 04 Mar 2018 16:30:04 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/caire-image-resize-library-based-on-seam-carving-algorithm/</guid>
      <description>&lt;p&gt;這裡示範如何使用 Caire 這個圖形函式庫，在圖片拉長或縮短後，以 Seam Carving 演算法自動修正圖形中的物體，保持完美的比例。&lt;/p&gt;
&lt;p&gt;在電腦上設計一些美工文宣品或是網站版面時，找尋適合的圖片是很重要的，有時候雖然找到的素材圖片風格非常棒，但若解析度不足、或是長寬比例不對的話，也不太能使用。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Keras 如何查詢模型參數的總數量？</title>
      <link>https://blog.gtwang.org/programming/how-to-find-number-of-parameters-of-a-keras-model/</link>
      <pubDate>Thu, 28 Dec 2017 12:01:01 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/how-to-find-number-of-parameters-of-a-keras-model/</guid>
      <description>&lt;p&gt;這裡介紹如何在 Keras 的程式中查詢深度學習模型參數的總數量。&lt;/p&gt;
&lt;p&gt;Keras 可用來快速搭建各種深度學習模型，但是在嘗試各種模型的過程中，我們也時常會需要了解模型的結構與參數的數量，方便調整模型。&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow Object Detection API 多 GPU 卡平行計算，加速模型訓練速度教學</title>
      <link>https://blog.gtwang.org/programming/tensorflow-object-detection-api-multiple-gpu-parallel-training/</link>
      <pubDate>Tue, 26 Dec 2017 16:38:17 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-object-detection-api-multiple-gpu-parallel-training/</guid>
      <description>&lt;p&gt;本篇記錄如何使用多張 GPU 顯示卡，加速 TensorFlow Object Detection API 模型訓練的過程。&lt;/p&gt;
&lt;p&gt;雖然 TensorFlow Object Detection API 已經有支援多張 GPU 卡平行計算的功能，但是缺乏說明文件，所以我自己也不是非常確定該怎麼用，以下只是我目前嘗試出來的方式，僅供參考。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Keras 儲存與載入訓練好的模型或參數教學</title>
      <link>https://blog.gtwang.org/programming/keras-save-and-load-model-tutorial/</link>
      <pubDate>Thu, 14 Dec 2017 10:30:11 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/keras-save-and-load-model-tutorial/</guid>
      <description>&lt;p&gt;這裡介紹如何使用 Keras 儲存與載入訓練好的模型或參數，以利重複使用或部署產品。&lt;/p&gt;
&lt;p&gt;訓練一個實際的類神經網路模型會需要非常大量的運算，所以在模型訓練完之後，最好可以把訓練好的模型參數儲存下來，這樣之後在使用時就可以省去重新訓練的時間。&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow Object Detection API 自行訓練模型教學，辨識特定物件</title>
      <link>https://blog.gtwang.org/programming/tensorflow-object-detection-api-custom-object-model-training-tutorial/</link>
      <pubDate>Mon, 11 Dec 2017 11:42:13 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-object-detection-api-custom-object-model-training-tutorial/</guid>
      <description>&lt;p&gt;這裡介如何使用自己的資料，以 TensorFlow Object Detection API 訓練出適用於特定物件的模型，建立自己的物件辨識系統。&lt;/p&gt;
&lt;p&gt;在 &lt;a href=&#34;https://blog.gtwang.org/programming/tensorflow-object-detection-api-tutorial/&#34;&gt;TensorFlow Object Detection API 自動辨識物件教學文章&lt;/a&gt;中，我們是直接使用既有已經訓練好的模型來辨識物件，但如果我們有一些比較特別的物件需要進行辨識，而這些物件又沒有被包含在既有模型中的話，就沒辦法直接使用既有的模型，這時候就需要先蒐集一些該物件的影像與標註資料，進一步訓練模型後，才能讓模型辨識出比較特別的物件。&lt;/p&gt;</description>
    </item>
    <item>
      <title>LabelImg 影像標註工具使用教學，製作深度學習用的資料集</title>
      <link>https://blog.gtwang.org/useful-tools/labelimg-graphical-image-annotation-tool-tutorial/</link>
      <pubDate>Wed, 29 Nov 2017 08:05:55 +0800</pubDate>
      <guid>https://blog.gtwang.org/useful-tools/labelimg-graphical-image-annotation-tool-tutorial/</guid>
      <description>&lt;p&gt;本篇介紹如何使用 LabelImg 這個免費的影像標註工具，標示照片中的物體，製作成可用來訓練深度學習引擎的輸入資料集。&lt;/p&gt;
&lt;p&gt;在使用深度學習來實作影像的物件偵測時，都會需要有大量的已知資料集，也就是照片加上物件的所在位置以及物件的名稱，而通常若要準備這類的資料，初期都會使用人工的方式來手動標註，而 LabelImg 就是用來標註照片中物體位置與名稱的小工具。&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow 與 Keras 指定 NVIDIA GPU 顯示卡與記憶體用量教學</title>
      <link>https://blog.gtwang.org/programming/tensorflow-keras-specify-gpu-and-memory-tutorial/</link>
      <pubDate>Fri, 17 Nov 2017 14:09:36 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-keras-specify-gpu-and-memory-tutorial/</guid>
      <description>&lt;p&gt;本篇介紹如何指定 TensorFlow 與 Keras 程式所使用的 GPU 顯示卡與記憶體用量。&lt;/p&gt;
&lt;p&gt;在 TensorFlow 或 Keras 中使用 NVIDIA 的 GPU 做運算時，預設會把整台機器上所有的 GPU 卡都獨佔下來，而且不管實際需要多少顯示卡的記憶體，每張卡的記憶體都會被佔滿，以下介紹如何調整設定，讓多張顯示卡可以分給多個程式或多人使用。&lt;/p&gt;</description>
    </item>
    <item>
      <title>使用 TensorFlow 內建的 Keras API 實作手寫數字辨識 CNN 程式</title>
      <link>https://blog.gtwang.org/programming/tensorflow-core-keras-api-cnn-tutorial/</link>
      <pubDate>Mon, 30 Oct 2017 15:17:25 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-core-keras-api-cnn-tutorial/</guid>
      <description>&lt;p&gt;這裡介紹如何使用 TensorFlow 內建的 Keras API 實作手寫數字辨識 CNN 程式。&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://keras.io/&#34;&gt;Keras&lt;/a&gt; 是一套高階的深度學習工具，今年 Google 將其納入 TensorFlow 的核心模組當中，發表於 &lt;a href=&#34;https://www.youtube.com/watch?v=UeheTiBJ0Io&#34;&gt;TensorFlow Dev Summit 2017&lt;/a&gt;，也就是說未來只要安裝好 TensorFlow 之後，就可以直接使用 Keras 的 API 函數，不需要另外安裝。&lt;/p&gt;</description>
    </item>
    <item>
      <title>CentOS Linux 安裝與使用 Keras 深度學習工具</title>
      <link>https://blog.gtwang.org/programming/centos-linux-install-keras-deep-learning-library/</link>
      <pubDate>Mon, 30 Oct 2017 10:36:04 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/centos-linux-install-keras-deep-learning-library/</guid>
      <description>&lt;p&gt;本篇介紹如何在 CentOS Linux 中安裝與使用 Keras 這套深度學習工具。&lt;/p&gt;
&lt;p&gt;談到深度學習（Deep Learning）的工具，大家都會想到 TensorFlow 這類的底層 framework，這類的基礎的 framework 由於保留了非常多的彈性空間，導致使用上比較不方便，如果想要快速進行依些簡單的問題測試，就可以使用 Keras 這類的高階工具。&lt;/p&gt;</description>
    </item>
    <item>
      <title>OpenCV 教學：實作 Selective Search 物體偵測候選區域演算法</title>
      <link>https://blog.gtwang.org/programming/selective-search-for-object-detection/</link>
      <pubDate>Thu, 26 Oct 2017 16:10:14 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/selective-search-for-object-detection/</guid>
      <description>&lt;p&gt;本篇介紹如何在 OpenCV 中實作 Selective Search 物體偵測候選區域演算法。&lt;/p&gt;
&lt;p&gt;初版的 &lt;a href=&#34;https://arxiv.org/abs/1311.2524&#34;&gt;R-CNN&lt;/a&gt; 是將 &lt;a href=&#34;https://www.huppelen.nl/publications/selectiveSearchDraft.pdf&#34;&gt;Selective Search&lt;/a&gt; 所得到的候選區域，放進 CNN 中進行判斷，為了更清楚理解 Selective Search 的運作，以下我們直接使用 OpenCV 來撰寫一個 Selective Search 的實作版本，觀察該演算法實際執行的結果。&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow 的 tf.InteractiveSession 互動式 Session 使用教學</title>
      <link>https://blog.gtwang.org/programming/tensorflow-interactivesession-tutorial/</link>
      <pubDate>Wed, 20 Sep 2017 12:02:28 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-interactivesession-tutorial/</guid>
      <description>&lt;p&gt;本篇是 TensorFlow 的 &lt;code&gt;tf.InteractiveSession&lt;/code&gt; 互動式 Session 使用教學。&lt;/p&gt;
&lt;p&gt;在 TensorFlow 中，所有的運算都要放在 session 中執行，而如果在 shell 或 IPython notebooks 中執行 TensorFlow 的程式時，我們可以改用比較方便使用的 &lt;code&gt;tf.InteractiveSession&lt;/code&gt;。&lt;/p&gt;
&lt;p&gt;

&lt;ins class=&#34;adsbygoogle&#34;
     style=&#34;display:block&#34;
     data-ad-client=&#34;ca-pub-7794009487786811&#34;
     data-ad-slot=&#34;9921134032&#34;
     data-ad-format=&#34;auto&#34;
     data-full-width-responsive=&#34;true&#34;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow 寫入與讀取 TFRecords 檔案格式教學</title>
      <link>https://blog.gtwang.org/programming/tensorflow-read-write-tfrecords-data-format-tutorial/</link>
      <pubDate>Fri, 15 Sep 2017 20:25:38 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-read-write-tfrecords-data-format-tutorial/</guid>
      <description>&lt;p&gt;這裡介紹如何將各種資料儲存為 TFRecords 檔案，方便在 TensorFlow 中使用。&lt;/p&gt;
&lt;p&gt;TensorFlow 支援許多種讀取檔案的方式（例如 &lt;a href=&#34;https://blog.gtwang.org/programming/tensorflow-input-pipeline-notes/&#34;&gt;TensorFlow 輸入管線&lt;/a&gt;），而 TensorFlow 本身也有自己標準的 TFRecords 檔案格式，可以將資料與對應的資料標示（label）儲存在一起，方便在 TensorFlow 中使用。&lt;/p&gt;</description>
    </item>
    <item>
      <title>樹莓派 Raspberry Pi 以 Docker 安裝 TensorFlow 教學</title>
      <link>https://blog.gtwang.org/iot/raspberry-pi/install-tensorflow-on-raspberry-pi-using-docker/</link>
      <pubDate>Sat, 09 Sep 2017 10:21:04 +0800</pubDate>
      <guid>https://blog.gtwang.org/iot/raspberry-pi/install-tensorflow-on-raspberry-pi-using-docker/</guid>
      <description>&lt;p&gt;這裡介紹如何在樹莓派上面以 Docker 安裝 TensorFlow 環境，開發機器學習的程式。&lt;/p&gt;
&lt;p&gt;

&lt;ins class=&#34;adsbygoogle&#34;
     style=&#34;display:block&#34;
     data-ad-client=&#34;ca-pub-7794009487786811&#34;
     data-ad-slot=&#34;9921134032&#34;
     data-ad-format=&#34;auto&#34;
     data-full-width-responsive=&#34;true&#34;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/p&gt;

&lt;p&gt;&lt;span class=&#34;block-label&#34;&gt;Step 1&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;首先參考&lt;a href=&#34;https://blog.gtwang.org/iot/raspberry-pi/raspberry-pi-docker-installation-tutorial/&#34;&gt;樹莓派安裝 Dcoker 的教學&lt;/a&gt;，把 Docker 環境裝好。&lt;/p&gt;
&lt;p&gt;&lt;span class=&#34;block-label&#34;&gt;Step 2&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;參考 GitHub 上的 &lt;a href=&#34;https://github.com/elswork/rpi-tensorflow&#34;&gt;DeftWork/rpi-tensorflow&lt;/a&gt;，執行適用於樹莓派的 Docker 影像：&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker run -it -p 8888:8888 elswork/rpi-tensorflow:latest
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;執行時 Docker 會自動下載這個 Docker 影像。&lt;/p&gt;</description>
    </item>
    <item>
      <title>使用 TensorBoard 視覺化呈現 TensorFlow 計算流程教學</title>
      <link>https://blog.gtwang.org/programming/tensorboard-tensorflow-visualization-tutorial/</link>
      <pubDate>Fri, 08 Sep 2017 14:58:15 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorboard-tensorflow-visualization-tutorial/</guid>
      <description>&lt;p&gt;本篇是 TensorBoard 的基本使用方法教學，以視覺化呈現 TensorFlow 的計算結果。&lt;/p&gt;
&lt;p&gt;通常實務上以 TensorFlow 建立的模型（例如深度神經網路）都相當複雜，若要對模型進行觀察、除錯與最佳化，都有一定的難度，而 TensorBoard 是一個專門用來呈現 TensorFlow 模型與資料的視覺化工具，其支援好幾種資料的呈現方式，讓程式設計者更容易掌握複雜的模型與資料。&lt;/p&gt;</description>
    </item>
    <item>
      <title>TensorFlow 機器學習軟體工具入門教學與範例實作</title>
      <link>https://blog.gtwang.org/programming/tensorflow-google-machine-learning-software-library-tutorial/</link>
      <pubDate>Wed, 28 Jun 2017 10:21:01 +0800</pubDate>
      <guid>https://blog.gtwang.org/programming/tensorflow-google-machine-learning-software-library-tutorial/</guid>
      <description>&lt;p&gt;本篇為 TensorFlow 機器學習軟體工具的入門教學，並實作一個簡單的線性迴歸模型範例。&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.tensorflow.org/&#34;&gt;TensorFlow&lt;/a&gt; 是一套由 Google 所發展的開放原始碼機器學習函式庫，其以流程圖的概念呈現整個資料分析流程，在流程圖中的每一個節點都代表一個運算，連接不同節點的連線則代表資料的傳遞，程式設計者可以運用各種不同的運算節點（不同的演算法），組合成適用於各種問題的分析系統，運用 CPU 或 GPU 進行運算。&lt;/p&gt;</description>
    </item>
    <item>
      <title>史丹佛大學機器學習（Machine Learning）上課筆記（五）</title>
      <link>https://blog.gtwang.org/statistics/standford-machine-learning-5/</link>
      <pubDate>Fri, 18 Oct 2013 15:17:49 +0800</pubDate>
      <guid>https://blog.gtwang.org/statistics/standford-machine-learning-5/</guid>
      <description>&lt;p&gt;本篇為史丹佛大學機器學習（Machine Learning）課程 Lecture 4 的前半段筆記，接續 &lt;a href=&#34;https://blog.gtwang.org/statistics/standford-machine-learning-4/&#34;&gt;Lecture 3&lt;/a&gt; 的內容。&lt;/p&gt;
&lt;p&gt;Lecture 4 的線上課程錄影可以從 &lt;a href=&#34;https://www.youtube.com/watch?v=nLKOQfKLUks&#34;&gt;YouTube 網站&lt;/a&gt;上觀看。&lt;/p&gt;
&lt;p&gt;

&lt;ins class=&#34;adsbygoogle&#34;
     style=&#34;display:block&#34;
     data-ad-client=&#34;ca-pub-7794009487786811&#34;
     data-ad-slot=&#34;9921134032&#34;
     data-ad-format=&#34;auto&#34;
     data-full-width-responsive=&#34;true&#34;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <title>史丹佛大學機器學習（Machine Learning）上課筆記（四）</title>
      <link>https://blog.gtwang.org/statistics/standford-machine-learning-4/</link>
      <pubDate>Tue, 08 Oct 2013 06:53:21 +0800</pubDate>
      <guid>https://blog.gtwang.org/statistics/standford-machine-learning-4/</guid>
      <description>&lt;p&gt;本篇為史丹佛大學機器學習（Machine Learning）課程 Lecture 3 的後半段筆記，接續 &lt;a href=&#34;https://blog.gtwang.org/statistics/standford-machine-learning-3/&#34;&gt;Lecture 3 前半部&lt;/a&gt;的內容。&lt;/p&gt;
&lt;p&gt;Lecture 3 的線上課程錄影可以從 &lt;a href=&#34;https://www.youtube.com/watch?v=HZ4cvaztQEs&#34;&gt;YouTube 網站&lt;/a&gt;上觀看。&lt;/p&gt;
&lt;p&gt;

&lt;ins class=&#34;adsbygoogle&#34;
     style=&#34;display:block&#34;
     data-ad-client=&#34;ca-pub-7794009487786811&#34;
     data-ad-slot=&#34;9921134032&#34;
     data-ad-format=&#34;auto&#34;
     data-full-width-responsive=&#34;true&#34;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <title>史丹佛大學機器學習（Machine Learning）上課筆記（三）</title>
      <link>https://blog.gtwang.org/statistics/standford-machine-learning-3/</link>
      <pubDate>Thu, 18 Jul 2013 08:30:03 +0800</pubDate>
      <guid>https://blog.gtwang.org/statistics/standford-machine-learning-3/</guid>
      <description>&lt;p&gt;本篇為史丹佛大學機器學習（Machine Learning）課程 Lecture 3 的前半段筆記，接續 &lt;a href=&#34;https://blog.gtwang.org/statistics/standford-machine-learning-2/&#34;&gt;Lecture 2&lt;/a&gt; 的內容。&lt;/p&gt;
&lt;p&gt;Lecture 3 的線上課程錄影可以從 &lt;a href=&#34;https://www.youtube.com/watch?v=HZ4cvaztQEs&#34;&gt;YouTube 網站&lt;/a&gt;上觀看。&lt;/p&gt;
&lt;p&gt;

&lt;ins class=&#34;adsbygoogle&#34;
     style=&#34;display:block&#34;
     data-ad-client=&#34;ca-pub-7794009487786811&#34;
     data-ad-slot=&#34;9921134032&#34;
     data-ad-format=&#34;auto&#34;
     data-full-width-responsive=&#34;true&#34;&gt;&lt;/ins&gt;
&lt;script&gt;
     (adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <title>史丹佛大學機器學習（Machine Learning）上課筆記（一）</title>
      <link>https://blog.gtwang.org/statistics/standford-machine-learning-1/</link>
      <pubDate>Sat, 13 Jul 2013 10:15:16 +0800</pubDate>
      <guid>https://blog.gtwang.org/statistics/standford-machine-learning-1/</guid>
      <description>&lt;p&gt;這是我觀看史丹佛大學機器學習（Machine Learning）課程時，自己做的筆記，分享給大家。本篇為 Lecture 2 的前半段筆記。&lt;/p&gt;
&lt;p&gt;史丹佛大學機器學習課程 Lecture 2 的錄影可以從 &lt;a href=&#34;https://www.youtube.com/watch?v=5u4G23_OohI&#34;&gt;YouTube 網站&lt;/a&gt;上觀看，而英文的 Lecture notes 可以從他的&lt;a href=&#34;https://cs229.stanford.edu/&#34;&gt;官方網站&lt;/a&gt;下載。&lt;/p&gt;</description>
    </item>
    <item>
      <title>史丹佛大學機器學習（Machine Learning）上課筆記（二）</title>
      <link>https://blog.gtwang.org/statistics/standford-machine-learning-2/</link>
      <pubDate>Sat, 13 Jul 2013 10:13:02 +0800</pubDate>
      <guid>https://blog.gtwang.org/statistics/standford-machine-learning-2/</guid>
      <description>&lt;p&gt;本篇為史丹佛大學機器學習（Machine Learning）課程 Lecture 2 的後半段筆記，其接續&lt;a href=&#34;https://blog.gtwang.org/statistics/standford-machine-learning-1/&#34;&gt;上半段&lt;/a&gt;的內容。&lt;/p&gt;
&lt;h3 id=&#34;the-normal-equations&#34;&gt;The Normal Equations&lt;/h3&gt;
&lt;p&gt;要找 \(J\) 的最小值除了 gradient descent 演算法之外，還有許多方式，這裡介紹另一個方法，使用這個方法直接使用 explict 的方式算出最小值，這樣可以不需要使用遞迴的方式。&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
