フィルターのクリア

error: [inputValues, targetValues] = input_preprocess();

2 ビュー (過去 30 日間)
faaruuq jamaludin
faaruuq jamaludin 2018 年 3 月 12 日
コメント済み: faaruuq jamaludin 2018 年 3 月 12 日
[inputValues, targetValues] = input_preprocess(); % Transform the labels to correct target values.
% Choose form of MLP:
numberOfHiddenUnits = 1250;
% Choose appropriate parameters.
learningRate = 0.1;
% Choose activation function.
activationFunction = @logisticSigmoid;
dActivationFunction = @dLogisticSigmoid;
% Choose batch size and epochs. Remember there are 60k input values.
batchSize = 20;
epochs = 10000;
fprintf('Train twolayer perceptron with %d hidden units.\n', numberOfHiddenUnits);
fprintf('Learning rate: %d.\n', learningRate);
[hiddenWeights, outputWeights, error] = train(activationFunction, dActivationFunction, numberOfHiddenUnits, inputValues, targetValues, epochs, batchSize, learningRate);
save Train.mat hiddenWeights outputWeights
  1 件のコメント
faaruuq jamaludin
faaruuq jamaludin 2018 年 3 月 12 日
[inputValues, targetValues] = input_preprocess(); % Transform the labels to correct target values.
i dont understand the above

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by