フィルターのクリア

Is there any RBF neural network function available for classification problem?

1 回表示 (過去 30 日間)
Hi,
As far as I know, the neural network pattern recognition tool does not supply the radial basis network algorithm. Is there any RBF neural network function available in Matlab for classification problem?
Many thanks!
Betty

採用された回答

Greg Heath
Greg Heath 2012 年 5 月 16 日
help newrb
doc newrb
Search the newsgroup using
heath newrb
Hope this helps.
Greg
  1 件のコメント
Moore betty
Moore betty 2012 年 5 月 17 日
Thanks for your help.
As for function newrb, it seems that it is used only for approximating a function in Matlab , do you know if the newrb function could be used to classify a dataset? Since I am new to neural network, hope you could give me some suggestions. Many thanks!
Betty

サインインしてコメントする。

その他の回答 (3 件)

Richard
Richard 2012 年 5 月 16 日
Hi - I think the free Netlab toolbox has code for radial basis function networks: http://www1.aston.ac.uk/eas/research/groups/ncrg/resources/netlab/
  1 件のコメント
Moore betty
Moore betty 2012 年 5 月 17 日
Thanks for your information!
I have download the toolbox, it has many useful codes though I still cannot find how to use rbf network for classification.
Thank you all the same!!
Best Regards
Betty

サインインしてコメントする。


Greg Heath
Greg Heath 2012 年 5 月 17 日
108 results for
heath newrb classification
Hope this elps.
Greg
  1 件のコメント
Moore betty
Moore betty 2012 年 5 月 20 日
Hi, thanks for your help!
I have searched for your answer, I still have a question that PCTerrval (the validation data missclassification error rate) you mentioned as performance goal for classification, cannot be found in Matlab. Does that mean I have coding this part in function newrb by myself?
Hope for your reply!
Many thanks!

サインインしてコメントする。


Greg Heath
Greg Heath 2012 年 5 月 21 日
Yes.
1. Divide the data
2. Normalize or standardize the training set
3. Use the training set statistics (min/max or mean/std) to normalize the trn and val sets.
4. NEWRB does not consider val or tst data. Training stops when either Hmax or MSEtrngoal is reached. I typically use Hmax <= (Ntrn-1)*O/(I+O+1) and MSEtrngoal ~ 0.01*mean(var(t'))
5. Train multiple designs with different values of spread
6. Record the trn/val/tst MSEs and PCTerrs.
7. Choose the design with the best nontraining performance
8. Searching with heath newrb close clear should yield code examples.
Hope this helps.
Greg

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by