<?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>Keras on G. T. Wang</title>
    <link>https://blog.gtwang.org/tags/keras/</link>
    <description>Recent content in Keras 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/keras/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>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>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 與 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>
  </channel>
</rss>
