Neural Network Toolbox の Neural Net Clustering で、学習後の重みの配​列がほしいのですが、​どうすれば見れますか​?

Neural Network Toolbox の Neural Net Clustering を使っているのですが、figure, plotsompos(net,inputs) で重みがどうなっているかがわかりますが、学習後の重みの配列はどうすれば見ることができますか?
また、figure, plotsomhits(net,inputs)でデータがクラスタリングされていることがわかりますが、入力データが出力のどこのニューロンにクラスタリングされたかがわかる配列は、どうすれば見ることができますか。

 Accepted Answer

学習後の重み配列については、
net.IW{1}
入力データがどこにクラスタリングされるかは
output = net(inputs)
で出力して確認できますよ。

1 Comment

解決しました。 ありがとうございます。

Sign in to comment.

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Asked:

on 24 Nov 2017

Commented:

on 25 Nov 2017

Community Treasure Hunt

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

Start Hunting!