当前位置:网站首页>What is a neural network
What is a neural network
2022-06-22 02:00:00 【早睡的叶子】
What is a neural network
Neural network is a collection of neurons that are connected by layers. Each neuron is a small computing unit that performs simple calculations to collectively solve a problem. They are organized in layers. There are 3 types of layers: input layer, hidden layer and outter layer. Each layer contains a number of neurons, except for the input layer. Neural networks mimic the way a human brain processes information.

Components of a neural network
Activation function
determines whether a neuron should be activated or not. The computations that happen in a neural network include applying an activation function. If a neuron activates, then it means the input is important. The are different kinds of activation functions. The choice of which activation function to use depends on what you want the output to be. Another important role of an activation function is to add non-linearity to the model.
- Binary used to set an output node to 1 if function result is positive and 0 if the function result is negative. f(x)={0,if x<01,if x≥0f(x)={0,if x<01,if x≥0
- Sigmod is used to predict the probability of an output node being between 0 and 1. f(x)=11+e−xf(x)=11+e−x
- Tanh is used to predict if an output node is between 1 and -1. Used in classification use cases. f(x)=ex−e−xex+e−xf(x)=ex−e−xex+e−x
- ReLU used to set the output node to 0 if fuction result is negative and keeps the result value if the result is a positive value. f(x)={0,if x<0x,if x≥0f(x)={0,if x<0x,if x≥0
Weights influence how well the output of our network will come close to the expected output value. As an input enters the neuron, it gets multiplied by a weight value and the resulting output is either observed, or passed to the next layer in the neural network. Weights for all neurons in a layer are organized into one tensor
Bias makes up the difference between the activation function’s output and its intended output. A low bias suggest that the network is making more assumptions about the form of the output, whereas a high bias value makes less assumptions about the form of the output.

We can say that an output yy of a neural network layer with weights WW and bias bb is computed as summation of the inputs multiply by the weights plus the bias x=∑(weights∗inputs)+biasx=∑(weights∗inputs)+bias, where f(x)f(x) is the activation function.
边栏推荐
- Mba-day24 best value problem
- NOIP 提高组 初赛 三、问题求解 习题集NOIP1995-NOIP2018
- digital signal processing
- acwing 837. Number of points in connected blocks (additional information maintained by querying sets - number of sets)
- Mysql database easy to learn 07 - select statement writing order and execution order
- 啊哈C语言 第5章 好戏在后面(第24-25讲)
- latex关于&的报错问题及表格排版问题
- Ansible Inventory 主机清单
- Shell脚本语法概览
- Ansible profile
猜你喜欢

acwing 835. Trie string statistics

快速学会CAD绘制传输线路图纸
![[Chapter 10: a website digital verification code recognition based on moment invariants matlab deep learning practical application case]](/img/19/867c03660cb9127dbb967402d8ca8f.png)
[Chapter 10: a website digital verification code recognition based on moment invariants matlab deep learning practical application case]

GAMES-101-个人总结归纳-Rasterization

【虚幻引擎UE】打包报错出现!FindPin错误的解决办法

acwing 838. 堆排序 (手写一个堆)

众昂矿业:萤石稀缺资源属性增强,未来或出现供需缺口

微信小程序影视评论交流平台系统毕业设计毕设(1)开发概要
![[chapter 02 weight adaptive image denoising technology based on Morphology - full system matlab intelligent driving in-depth learning]](/img/65/c9ba18ffd37f84c3ca399507625c90.png)
[chapter 02 weight adaptive image denoising technology based on Morphology - full system matlab intelligent driving in-depth learning]

Test APK exception control WiFi scan attacker development
随机推荐
Mba-day23 at most at least questions - exercises
NOIP初赛 CSP-J1 CSP-S1 第1轮 初赛 信奥中的数学知识(二)
digital signal processing
手机app测试方法
flutter系列之:flutter中的IndexedStack
1277_ Implementation analysis of vtaskdelay in FreeRTOS
pdf转word pdf转图片 图片转pdf 修改pdf文件就像操作Word一样方便(Acrobat DC使用介绍)
Who will use pyspark to upload filtered local data to spark SQL
Games-101-personal summary shading
[Chapter 15 wavelet based image compression technology deep learning machine learning image processing application matlab.]
Learn to crawl steadily 08 - detailed explanation of the use method of selenium
2021 csp-j1 csp-s1 first round preliminary round related questions and videos
LeetCode 513 找树左下角的值[BFS 二叉树] HERODING的LeetCode之路
Completion of graduation design of wechat small program film and television review and exchange platform system (4) opening report
Input system learning ----- inputfilter
Error reporting and table layout of latex on &
[Chapter 10: a website digital verification code recognition based on moment invariants matlab deep learning practical application case]
NOIP初赛 CSP-J1 CSP-S1 第1轮 初赛 信奥中的数学知识(一)
Intel written test questions DIY
acwing 838. Heap sort (write a heap)