필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah 2016년 11월 6일
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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Function Approximation, Clustering, and Control에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by