Economic analysis based on wavelet neural network, engineering energy consumption analysis based on wavelet neural network, PPD prediction based on wavelet neural network, detailed principle of wavelet neural network

Target

Back view
Principle of BP neural network
Definition of BP neural network
Basic structure of BP neural network
Neuron of BP neural network
Activation function of BP neural network,
Transfer function of BP neural network
Wavelet neural network (BP neural network with wavelet basis as transfer function )
Code link: Economic analysis based on wavelet neural network, ANN economic analysis resource-CSDN library https://download.csdn.net/download/abc991835105/88139752
Neural network parameters
Passenger flow prediction based on wavelet neural network Rendering
results
Analysis
Outlook

back view

The development of artificial intelligence is getting faster and faster. This article uses wavelet neural network to conduct economic analysis.

The principle of BP neural network

Definition of BP neural network

Artificial neural networks do not need to determine the mathematical equations of the mapping relationship between input and output in advance. They only learn a certain rule through their own training and obtain the result closest to the expected output value when the input value is given. As an intelligent information processing system, the core of artificial neural network to realize its function is algorithm. BP neural network is a multi-layer feedforward network trained by error backpropagation (referred to as error backpropagation). Its algorithm is called BP algorithm. Its basic idea is the gradient descent method, which uses gradient search technology in order to make the network The mean square error of the actual output value and the expected output value is the smallest.

The basic structure of BP neural network

The basic BP algorithm includes two processes: forward propagation of signals and back propagation of errors. That is, the error output is calculated in the direction from input to output, while the weights and thresholds are adjusted in the direction from output to input. During forward propagation, the input signal acts on the output node through the hidden layer and undergoes nonlinear transformation to generate an output signal. If the actual output does not match the expected output, it will enter the back propagation process of the error. Error backpropagation is to

Guess you like

Origin blog.csdn.net/abc991835105/article/details/132731027
Recommended