What does MU in trainbr actually mean and can I EEG matrix data as inputs?
2 次查看(过去 30 天)
显示 更早的评论
I am new to using ANNs practically so please be patient! I have two main questions 1. what does MU actually mean in the trainbr function? I have looked at documentation but the math is above my level of understanding.
2. I have matrices of EEG data. Each column is an ERP, or waveform that I want the network to learn. I am using patternnet. Can I do this? Meaning is the net 'understanding' that my columns are my units?
Thanks in advance very much!
Kim
0 个评论
采纳的回答
Greg Heath
2016-1-13
编辑:Greg Heath
2016-1-13
Before you post a question
1. Use the MATLAB commands
lookfor, help, and doc
2. Check out Google and Wikipedia
3. For source code use the MATLAB command type
type trainbr
>>lookfor trainbr
>> help trainbr
... Levenberg-Marquardt optimization.
... Bayesian Regularization
... mu 0.005 Marquardt adjustment parameter
mu_dec 0.1 Decrease factor for mu
mu_inc 10 Increase factor for mu
mu_max 1e10 Maximum value for mu
>> doc trainbr
... LIMITATIONS ...
... MORE ABOUT ... expand all
... Algorithms ...
... References ...
4. FINALLY: GOOGLE LEVENBERG-MARQUARDT
All inputs and target outputs in the NN Toolbox are column vectors
If you are classifying waveforms into c classes, the target columns should be {0,1} unit vector columns of eye(c). However, PATTERNNET is the go to classification algorithm with the default TRAINSCG.
So why are you considering TRAINBR?
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!