필터 지우기
필터 지우기

retrain neurons

조회 수: 6 (최근 30일)
i Venky
i Venky 2011년 10월 16일
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일
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개)

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by