10.1 Automatic machine learning Auto_ML

What can AutoML do?

  1. Automatically search neural network model structure
  2. Get better results through Fine-tuning/migration learning on specified tasks

How to search the network structure?

  1. Search must have search space
  2. There must be feedback during the search process
  3. Automate the search process

Search space ---- Take the convolutional neural network as an example,
only the convolutional layer is retained, and the last layer uses global pooling instead of each convolutional layer. There are five parameters
Filter height/width/number
Stride height/width
N-layer convolutional nerve The network has N*5 parameter

search feedback, which
indicates the quality of the neural network
. The accuracy of the model on a certain data set can be used. The model
needs to be trained






 

Guess you like

Origin blog.csdn.net/weixin_43135178/article/details/114672085