Matlab - Neural network training

前端 未结 4 709
有刺的猬
有刺的猬 2021-02-06 14:06

I\'m working on creating a 2 layer neural network with back-propagation. The NN is supposed to get its data from a 20001x17 vector that holds following information in each row:<

4条回答
  •  你的背包
    2021-02-06 14:16

    1. Use hardlin fcn in output layer.
      1. Use trainlm or trainrp for training the network.
      2. To learn your network, use a for loop and a condition that compare the output and target. When it is the best use, break to exit from the learning loop.
      3. Use another way instead of mapminmax for pre-processing data set.

提交回复
热议问题