Can I save previous time step input feature in custom layer?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to use previous and current time-step input feature togther to improve performance of RNN, if decleare a property named `preFeature`, and update it using function `updatePreFeature`, I have to declare my custom layer handle class, Is it illegall?
댓글 수: 0
채택된 답변
Yash
2023년 10월 26일
Hi Xie,
In my opinion it is perfectly acceptable to declare a custom layer handle class in MATLAB to implement a property like 'preFeature' and an associated function like 'updatePreFeature' for your recurrent neural network (RNN). In fact, using a custom layer handle class is the recommended approach for implementing custom layers and adding extra functionality to your neural network models in MATLAB. This allows you to extend the capabilities of the existing classes and customize them to suit your specific needs.
By using a custom layer handle class, you can incorporate the 'preFeature' and 'updatePreFeature' functions into your RNN model to improve its performance by considering both the previous and current time-step input features.
Hope this helps!
추가 답변 (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!