当前位置:网站首页>February 14, 2022 [reading notes] - life science based on deep learning Chapter 2 Introduction to deep learning (Part 1)
February 14, 2022 [reading notes] - life science based on deep learning Chapter 2 Introduction to deep learning (Part 1)
2022-06-30 07:39:00 【Muyiqing】

- The traditional method is to design a function by hand , Start by analyzing the problem , Recognize features by writing computer code , And reliably generate results ; Machine learning takes a completely different approach , There is no need to design functions manually , Instead, it allows the computer to learn its own functions from the data .
- Linear model ( perceptron )
- y=Mx+b
- M It's a matrix / The weight ,b It's a vector
- There are many limitations , Not suitable for most real datasets . When the data dimension becomes very high , The problem will get worse .
- Multilayer perceptron (MLP)
- It can be simply understood as superposition of multiple linear transformations one by one .
- Transfer a linear function to another nonlinear function ( Activation function φ(x))
- y=M2φ(M1x+b1)+b2
- You can also stack any number of transformations together :
- h1=φ1(M1x+b1)
- h2=φ2(M2h1+b2)
- ...
- hn-1=φn-1(Mn-1hn-2+bn-1)
- y=φn(Mnhn-1+bn)
- At present, there are three popular activation functions :
- Correction of linear element function
- Hyperbolic tangent function
- sigmoid function
- MLP The other two properties of : Width and depth
- Definition
- Width : Refers to the size of the hidden layer , Choose each hhhh The length of
- depth : Refers to the number of layers in the model
- The choice of width and depth requires trying multiple combinations , There are some principles to guide :
- Containing a hidden layer MPL Is a universal approximator
- The deep model requires fewer parameters than the shallow model
- Deep models are often more difficult to train than previous models
- Definition
边栏推荐
- Final review -php learning notes 11-php-pdo database abstraction layer
- Permutation and combination of probability
- Periodic planning work
- Digital tube EEPROM key to save value
- 期末复习-PHP学习笔记11-PHP-PDO数据库抽象层.
- Implementation of binary search in C language
- Record the problem that the system file cannot be modified as an administrator during the development process
- November 19, 2021 [reading notes] a summary of common problems of sneakemake (Part 2)
- 深度学习——LSTM
- Network security and data in 2021: collection of new compliance review articles (215 pages)
猜你喜欢

Pool de Threads - langage C

Raspberry pie 4B Getting Started Guide

期末复习-PHP学习笔记3-PHP流程控制语句

Final review -php learning notes 7-php and web page interaction

RT thread kernel application development message queue experiment

STM32 register

Minecraft 1.16.5 module development (50) guide book

C language implementation sequence stack

Tencent and Fudan University "2021-2022 yuan universe report" with 102 yuan universe collections

Processes, jobs, and services
随机推荐
Disk space, logical volume
Parameter calculation of deep learning convolution neural network
Local unloading traffic of 5g application
Spring Festival inventory of Internet giants in 2022
Efga design open source framework fabulous series (I) establishment of development environment
Introduction to ecostruxure (1) IEC61499 new scheme
Introduction notes to pytorch deep learning (XII) neural network - nonlinear activation
想转行,却又不知道干什么?此文写给正在迷茫的你
Network, network card and IP configuration
Virtual machine VMware: due to vcruntime140 not found_ 1.dll, unable to continue code execution
Final review -php learning notes 4-php custom functions
Ad\dxp how to solve the problem of not knowing the schematic Library
National technology n32g45x series about timer timing cycle calculation
Xiashuo think tank: 50 planet updates reported today (including the global architects Summit Series)
Armv8 (coretex-a53) debugging based on openocd and ft2232h
線程池——C語言
期末复习-PHP学习笔记4-PHP自定义函数
C language operators
Private method of single test calling object
Introduction notes to pytorch deep learning (10) neural network convolution layer