Effacer les filtres
Effacer les filtres

retrain neurons

6 vues (au cours des 30 derniers jours)
i Venky
i Venky le 16 Oct 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?

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by