Training on a fitness function

↘锁芯ラ 提交于 2019-12-11 16:35:06

问题


I am looking at FANN (Fast Artificial Neural Network) to create a neural network to drive a car around a track in a simulation.

It's possible to train on a fixed data set, but this isn't suitable for training a car to drive. I would like to use a fitness function to train my NN. Is this possible?

Is it possible to tell FANN to use a fitness function rather than a fixed data set to train a NN?


回答1:


I would like to use a fitness function to train my NN. Is this possible?

Fitness functions judge efficiency (to label- or select from generated data); not a function of the network itself.

Is it possible to tell FANN to use a fitness function rather than a fixed data set to train a NN?

fann_train adjusts weights per individual set using FANN_TRAIN_INCREMENTAL.



来源:https://stackoverflow.com/questions/47239418/training-on-a-fitness-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!