I am training SOM using the Deep Learning toolboxes train() function. How do I get out the SOM node vectors, i.e., the learned codebook vectors?

 採用された回答

Adam
Adam 2019 年 9 月 24 日
編集済み: Adam 2019 年 9 月 24 日

0 投票

net.IW{1}
will give you the codebook vectors/weights. For example:
x = simplecluster_dataset;
net = selforgmap([8 8]);
net = train( net, x );
net.IW{1}
It isn't the most intuitive to find the things you want in an SOM from the Deep Learning toolbox. I constantly forgot where all my parameters were when I used it. It uses the same network class as deep networks so there is a lot of stuff in there totally irrelevant to SOMs.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDeep Learning Toolbox についてさらに検索

質問済み:

2019 年 9 月 24 日

編集済み:

2019 年 9 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by