- Hands-On Natural Language Processing with Python
- Rajesh Arumugam Rajalingappaa Shanmugamani
- 172字
- 2021-08-13 16:01:46
Perceptron
To start, we will introduce the perceptron model. The perceptron is the simplest neural network model. It can learn a linear mapping based on the input and output when trained on a labeled training dataset. A linear mapping is the sum of a product of weights on a set of input variables, otherwise known as features. The final sum is passed through a step function to select one of the binary values in the case of a classification problem. The following diagram represents a perceptron:

The weights are derived from the training data by a process called learning. The process of learning will be explained later in this chapter. The perceptron uses the unit step function for the output prediction. The final activation output can be 0 or 1, corresponding to the binary class in the training data. While the unit step function is the simplest activation function, we will touch upon other types of activation functions that are widely used in modern deep learning architectures in the following section.
- SQL Server 從入門到項目實踐(超值版)
- The DevOps 2.3 Toolkit
- CentOS 7 Linux Server Cookbook(Second Edition)
- C語言程序設計實訓教程
- INSTANT Sencha Touch
- Internet of Things with Intel Galileo
- Getting Started with NativeScript
- 自然語言處理Python進階
- SQL經典實例(第2版)
- Mastering JavaScript High Performance
- ServiceNow:Building Powerful Workflows
- Building Serverless Architectures
- HTML5+CSS3+jQuery Mobile APP與移動網站設計從入門到精通
- 小程序從0到1:微信全棧工程師一本通
- 算法設計與分析:基于C++編程語言的描述