- 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.
- OpenStack Cloud Computing Cookbook(Third Edition)
- GAE編程指南
- 一步一步學Spring Boot 2:微服務項目實戰
- 在最好的年紀學Python:小學生趣味編程
- Java入門經典(第6版)
- 數據結構(Java語言描述)
- INSTANT MinGW Starter
- Visual Basic學習手冊
- Mastering JavaScript High Performance
- 從Java到Web程序設計教程
- 微信小程序開發與實戰(微課版)
- Android Sensor Programming By Example
- Learning Shiny
- HTML5 Canvas核心技術:圖形、動畫與游戲開發
- Design Patterns and Best Practices in Java