Undefined function 'initializeParameters' for input arguments of type 'double'. This is what i get when i run. Please help
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Rono Noah
am 17 Mär. 2019
Beantwortet: Walter Roberson
am 17 Mär. 2019
inputSize = 36;
numClasses = 10;
hiddenSizeL1 = 30; % Fist Hidden Layer Size
hiddenSizeL2 = 30; % Second Hidden Layer Size
sparsityParam = 0.1; %Avarage activation of the hidden units
lambda = 3e-3; % weight decay parameter for Regularization
beta = 3; % weight of sparsity penalty term
% Load the vibration data file.
load('fea1.mat')
trainData =fea1';
trainLabels = [ones(25,1)];
% trainLabels(trainLabels == 0) = 10; % Remap 0 to 10 since our labels need to start from 1
% Training the First Sparse Autoencoder
% Randomly initialize the parameters
sae1Theta = initializeParameters(hiddenSizeL1, inputSize);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Mär. 2019
You need to install that. If you are using a relatively recent MATLAB you can use Add-On Explorer to install it.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!