8

I once came across a neural network being trained without back-propagation or genetic algorithms (or using any kind of data sets). It was based on how the human brain learns and adjusts its connections between neurons.

What is the name of such a machine learning approach?

nbro
  • 39,006
  • 12
  • 98
  • 176
Philogy
  • 201
  • 1
  • 6

2 Answers2

6

If it was based on how the human brain learns, it might have used hebbian learning.

One example for such a network would be HTM.

BlindKungFuMaster
  • 4,185
  • 11
  • 23
4

There are approaches to training neural networks that do not use back-propagation, or genetic algorithms. One example is the Extreme Learning Machine approach.

You may find something useful in this older discussion on Cross Validated.

nbro
  • 39,006
  • 12
  • 98
  • 176
mindcrime
  • 3,737
  • 14
  • 29
  • What approach does ELM then use? I think it would be useful to say something about it. – nbro Apr 12 '19 at 21:52