Neural network coder decoder
显示 更早的评论
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
回答(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
类别
在 帮助中心 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!