Artificial Intelligence Lesson 1 (Introduction to Deep Learning)

The difference between machine learning and deep learning

1. Machine learning is a method of achieving artificial intelligence

2. Deep learning is a method of implementing machine learning

Insert image description here

What is deep learning

Deep learning is a new field of machine learning research. Deep learning can be understood as forming more abstract high-level representation attribute categories or features by combining low-level features. The purpose is to simulate the neural network for human brain analysis to imitate the human brain mechanism to explain Image, audio and other data.

Insert image description here

What is a neural network

Insert image description here

Insert image description here
Insert image description here

System perspective: input, model, output
Model: the mapping relationship between input and output

Basic structure of neural network

Insert image description here
Insert image description here

Neurons

Insert image description here

Supervised Learning with Neural Networks

Insert image description here

In different instances, the neural networks we want to apply are also different.
In Online Advertising we use a standard neural network (as shown in the picture above)
in Photo tagging we use a CNN network (convolutional neural network)
in Speech recognition we use a RNN network (recurrent neural network )
In Autonomous driving we use the Custom_Hybird network (a hybrid complex neural network)

convolution layer

Insert image description here
Insert image description here

The role of the convolutional layer:

Retain the main features while reducing parameters (dimensionality reduction, the effect is similar to PCA) and calculation amount, preventing over-fitting and improving model generalization ability

Pooling layer

Insert image description here

Hello World of Artificial Intelligence - Handwriting Recognition

Insert image description here

Guess you like

Origin blog.csdn.net/weixin_51654869/article/details/109453941