|
|
|
|
|
by horyzen
2564 days ago
|
|
Genetic algorithms works well when 0) there is not enough data for you to train a NN, and 1) you have a really huge solution space for the problem that you cannot brutal force, and 2) you can encode each solution into a simple ``string'' (chromosome), and 3) the problem you're trying to solve is not very time critical (GA can take seconds to minutes depending on your problem) Also, GA can actually utilize many CPU or even GPU cores to solve the problem much faster. |
|
Ha. Days or weeks is typical for complex problems.