|
|
|
|
|
by jordancampbell
3654 days ago
|
|
Yep! Learning algorithms typically find parameters that relate the input to some output. Genetic algorithms are just a collection of methods that describe how to search through parameter space. Supervised learning algorithms are ones for which we have some known labels on our inputs (known outputs), whereas in unsupervised learning we don't have any known outputs. Regardless, in both cases we need to learn the parameters that relate the input to the output. Genetic algorithms can therefore be both supervised or unsupervised. |
|