0

I know that I can use Keras to solve classification problems but is it possible to get it to output a float between 0 and 1000 for instance? I want train my network to approximate the simulation that gives my GA a fitness score because the simulation takes a long time to run.

bigb123
  • 1
  • 1

1 Answers1

0

Yes, you can get a neural network to predict real numbers instead of for classification. This type of problem is called regression.

You can find dozens of tutorials for doing regression with Keras. The official one is here.

noe
  • 22,074
  • 1
  • 43
  • 70