How can I get the MSE over the training period when using a self-organizing map?

3 views (last 30 days)
I'd like to know whether the network is still improving with additional training. I've seen in the documentation that tr should have field "perf" which contains performance at each epoch throughout the training, but my tr doesn't have that field, I'm guessing since SOM is an unsupervised method.
net = selforgmap([4,4],100,4,'gridtop','linkdist');
net_init = net;
net.trainParam.epochs = 1e4;
[net, tr] = train(net,Data);

Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!