How to add new classes into a pre-trained network?
조회 수: 1 (최근 30일)
이전 댓글 표시
Say I already have a pre-trained network who can classify class A, class B and class C. Is there anyway I can re-train it only using some data from a new class D (instead of using a full dataset that contains data from all four classes), so that the new network is capable of classify both class A, B, C and D? Also wondering if it's achieveable by changing some certain settings during the transfer learning process?
Thanks in advance.
댓글 수: 0
답변 (2개)
Gouri Chennuru
2020년 8월 13일
Hi Da Huang,
You can load the model, train and remove the last layer, change its other neurons and train the network again! This will basically train the the last layer from the beginning.
or, you can also specify the number of classes in the last fully connected layer of your network as the Output size argument.
Hope this Helps!
댓글 수: 0
Farshid PirahanSiah
2020년 10월 19일
Several ways to add new class to trained model which require just training for new classes.
- Transfer Learning Twice
- Continual learning approaches
* Regularization
* Expansion
* Rehearsal
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!