Azzera filtri
Azzera filtri

retrain neurons

6 visualizzazioni (ultimi 30 giorni)
i Venky
i Venky il 16 Ott 2011
I asked this question before and no one replied. So I am asking this again.
I am new to neural networks. I tried the probabilistic method for image processing and it worked perfectly. When I studied about these neural networks (in a book) it said that it is possible to retrain these neurons for a different set of data of a same class. How would you do that using matlab?

Risposta accettata

Greg Heath
Greg Heath il 17 Ott 2011
You could try
[net2 tr Y E] = train(net1,p2,t2); % Train for a new set
% However, performance of net2 on p1 may be unsatisfactory
Therefore use
[net2 tr Y E] = train(net1,[p1 p2],[t1 t2]);
Hope this helps.
Greg
  1 Commento
i Venky
i Venky il 17 Ott 2011
Thanks man. I didn't even think about this.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by