Borrar filtros
Borrar filtros

Output data size does not match net.outputs{1}.size?

2 visualizaciones (últimos 30 días)
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah el 6 de Nov. de 2016
I want to use self-organizing map for classification. My code is give n below:
load('TR10by10.mat');
FMat=double(Tr10by10); %%size of FMat is 100by23888; 100 is feature values, 23888 is number of samples
[FMat,dataMean,dataStd]=NormaMean(FMat');
% Create a Self-Organizing Map
dimension1 = 10;
dimension2 = 10;
net = selforgmap([dimension1 dimension2]);
% Train the Network
net.trainParam.epochs=3000;
[net1,tr1] = train(net,FMat,TrainL1); % TrainL1 is 2by23888

Respuestas (0)

Categorías

Más información sobre Function Approximation, Clustering, and Control en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by