Filter löschen
Filter löschen

retrain neurons

6 Ansichten (letzte 30 Tage)
i Venky
i Venky am 16 Okt. 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?

Akzeptierte Antwort

Greg Heath
Greg Heath am 17 Okt. 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 Kommentar
i Venky
i Venky am 17 Okt. 2011
Thanks man. I didn't even think about this.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by