Neural network coder decoder
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello,
I have tried to construct coder-decoder with patternet in order to reduce 1x400 vector but without any luck. What I trying to do: Create a neural network with 400 inputs neurons and 400 output neurons and X hidden neurons in the last hidden layer (but consider now just one hidden layer). It should be kind of decimation or PCA of my vector. The goal is to find the number of hidden neurons which will satisfy my error requirements to output data.
What I have done is I took 400x20000 matrix as input matrix and the same matrix as targets. When I start training on patternet it will print me that Performance goal is set and the tool didn't do any epochs at all. Performance function was set to cross-entropy and training algorithm SCG. I tried to use MSE as cost fcn. This actually started training, but performance did not lower over epochs at all.
Do you have any suggestions how could I accomplish that?
Thanks
댓글 수: 0
답변 (1개)
Greg Heath
2018년 5월 6일
I think I understand your problem. I have used the following technique
1. target = input
2. Single hidden layer
3. Use FITNET (NOT PATTERNET!)
4. Minimize the number of hidden nodes
5. Use output of the hidden layer as the input
to a PATTERNET classifier
Hope this helps
Thank you for formally accepting my answer
Greg
댓글 수: 0
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!