- Python Deep Learning Cookbook
- Indra den Bakker
- 165字
- 2021-07-02 15:43:15
Building a multi-layer neural network
What we've created in the previous recipe is actually the simplest form of an FNN: a neural network where the information flows only in one direction. For our next recipe, we will extend the number of hidden layers from one to multiple layers. Adding additional layers increases the power of a network to learn complex non-linear patterns.

As you can see in Figure 2-7, by adding an additional layer the number of connections (weights), also called trainable parameters, increases exponentially. In the next recipe, we will create a network with two hidden layers to predict wine quality. This is a regression task, so we will be using a linear activation for the output layer. For the hidden layers, we use ReLU activation functions. This recipe uses the Keras framework to implement the feed-forward network.
- TypeScript入門與實戰
- The Android Game Developer's Handbook
- Vue.js 2 and Bootstrap 4 Web Development
- 基于差分進化的優化方法及應用
- 高級C/C++編譯技術(典藏版)
- Learning Selenium Testing Tools(Third Edition)
- Java項目實戰精編
- Learning Zurb Foundation
- SQL Server 2016 從入門到實戰(視頻教學版)
- 大數據時代的企業升級之道(全3冊)
- Python全棧開發:基礎入門
- 從零開始學Python大數據與量化交易
- Mastering Assembly Programming
- Learning Predictive Analytics with R
- PHP程序員面試算法寶典