What is the relation between NEAT and reinforcement learning?
P

1

7

As far as I know, NEAT (NeuroEvolution of Augmenting Topologies) is an algorithm that uses the concept of evolution to train a neural network. On the other hand, reinforcement learning is a type of machine learning with the concept of "rewarding" more successful nodes.

What is the difference between these two fields as they seem to be quite similar? Or is NEAT derived from reinforcement learning?

Polarization answered 18/2, 2017 at 15:57 Comment(0)
P
7

In short they have barely anything in common.

NEAT is an evolutionary method. This is a black box approach to optimization of functions. In this case - performance of the neural net (which can be easily measured) wrt. to its architecture (which you alter during evolution).

Reinforcement learning is about agents, learning policies to behave well in the environment. Thus they solve different, more complex problem. In theory you could learn NEAT using RL, as you might pose the problem of "given a neural network as a state, learn how to modify it over time to get better performance". The crucial difference will be - NEAT output is a network, RL output is a policy, strategy, algorithm. Something that can be used multiple times to work in some environment, take actions and obtain rewards.

Penuchle answered 19/2, 2017 at 0:27 Comment(1)
Both approaches are very different and, as you say, normally used in different context. But reinforcement learning does not necessarily solve more "complex" problems (see, for example: arxiv.org/pdf/1703.03864.pdf)Aundrea

© 2022 - 2024 — McMap. All rights reserved.