10 fold cross validation

12 ビュー (過去 30 日間)
uma
uma 2022 年 4 月 13 日
回答済み: uma 2022 年 6 月 16 日
how to use 10 fold cross validation in Multilayer extreme learning machine

採用された回答

Demet
Demet 2022 年 4 月 19 日
編集済み: Demet 2022 年 4 月 19 日
Hello,
I have never used Multilayer extreme learning machine but i found this. The code below was written assuming that the code in this link is correct and It would be helpful for you
data= dlmread('data\\inputs1.txt'); %inputs
groups=dlmread('data\\targets1.txt'); % target
Fold=10;
indices = crossvalind('Kfold',length(groups),Fold);
for i =1:Fold
testy = (indices == i);
trainy = (~testy);
TestInputData=data(testy,:)';
TrainInputData=data(trainy,:)';
TestOutputData=groups(testy,:)';
TrainOutputData=groups(trainy,:)';
number_neurons=[1000 100 100 100];% acchetecture of network
NL=4;
ELM_Type=1;
[training_Acuracy]=MLP_elm_train(TrainInputData,TrainOutputData,number_neurons,ELM_Type,NL);%training
training_Acuracy_f(fold)=training_Acuracy; %keep training acc for each fold
[testing_Accuracy,output]=MLP_elm_predict(TestInputData, TestOutputData,ELM_Type,NL);%testing
testing_Accuracy_f(Fold)=testing_Accuracy;% keep testing acc for each fold
end
  1 件のコメント
uma
uma 2022 年 6 月 15 日
thank you so much.

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

その他の回答 (1 件)

uma
uma 2022 年 6 月 16 日
how we can specify the input and target data as i have a dataset namely segment attached here.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by