How to aviod creating a fully connected neural network in matlab?
3 次查看(过去 30 天)
显示 更早的评论
I am trying to build a neural network in matlab for regression/ forecasting purpose. Is it possible to remove certain neuron connections in matlab built in neural network codes?
0 个评论
回答(3 个)
Greg Heath
2018-2-7
编辑:Greg Heath
2018-2-7
The neural net for regression and curvefitting is FITNET (special case of feedforwardnet). For details see the documentation
help fitnet
and
doc fitnet
For examples that minimize the number of hidden nodes via a double for-loop search see BOTH the NEWSGROUP comp.soft-sys.matlab and ANSWERS using
greg fitnet Ntrials
Hope this helps.
Thank you for formally accepting my answer
Greg
2 个评论
Greg Heath
2018-2-13
I am afraid that you will not get much of a response unless you can explain why you would want to do such a thing.
Typically, variations are controlled by adding or removing hidden neurons, not connections.
Hope this helps,
Greg
Greg Heath
2018-2-13
The answer to your question is :
Yes it is possible to do.
HOWEVER, there is no MATLAB function available for doing so.
THEREFORE you would have to write your own code.
From ~1983 to ~2003 I wrote evolving versions of Gaussian hidden node classifiers for classifying radar targets. Most of the evolution involved updating the classifiers when new radar data on old target types became available. Less often new classifiers had to be designed when data on new target types became available.
The simplest versions were comparable to variations of MATLAB's NEWRB and NEWRBE.
If you are going to modify network geometry during training. I recommend using Gaussian hidden nodes and a combination of NEWRB and NEWRBE.
1. Classify inputs using Gaussian hidden nodes.
2. Misclassified inputs are used to add new Gaussian hidden nodes.
3. There are many ways to determine where and when a Gaussian hidden
node should be added or removed.
In summary, if you are going to remove and/or add network connections during training, I recommend using Gaussian hidden nodes in the fashion of NEWRB and NEWRBE.
Hope this helps.
Thank you for formally accepting my answer
Greg
3 个评论
mohammed al ai baky
2018-10-9
Did you get anywhere around this? Did you try other tools? I'd like to remove connections as well. The purpose is to use for NN-based Error Correction Code decoders
Greg Heath
2018-10-10
That is why I "invented" the straightforward method of looping over number of hidden nodes.
Search BOTH the NEWSGROUP and ANSWERS using
Greg Ntrials
Hope this helps.
Thank you for formally acceping my answer
Greg
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!