How to utilize Hebbian learning?

前端 未结 4 1597
天涯浪人
天涯浪人 2021-01-30 17:43

I want to upgrade my evolution simulator to use Hebb learning, like this one. I basically want small creatures to be able to learn how to find food. I achieved that with the bas

4条回答
  •  没有蜡笔的小新
    2021-01-30 18:39

    I'm not very well acquainted with this type of neural network, but it looks like you're expecting it to work like a supervised update method while it is unsupervised. This means you can't teach it what is right, it will only learn what is different, by association. That is, it will eventually associate actions with particular clusters of inputs. In your situation where you want it to improve its decisionmaking by feedback, I don't think Hebbian updates only will suffice. You could combine it with some sort of backpropagation though.

提交回复
热议问题