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?

 채택된 답변

Greg Heath
Greg Heath 2011년 10월 17일

1 개 추천

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

i Venky
i Venky 2011년 10월 17일
Thanks man. I didn't even think about this.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2011년 10월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by