Effacer les filtres
Effacer les filtres

Forward selection with Random forest: error

2 vues (au cours des 30 derniers jours)
Sowmya MR
Sowmya MR le 23 Fév 2018
I am trying to run below code for feature selection using Random forest in matlab but it gives me some error. Can someone help me fix it?
rng(10)
c = cvpartition(Ytrain,'k',10);
opts = statset('display','iter');
fun = @(xtrain,ytrain,xtest,ytest) sum(ytest ~= predict(TreeBagger(500,xtrain,ytrain),xtest));
[fs,history] = sequentialfs(fun,Xtrain,Ytrain,'cv',c,'options',opts, 'direction', 'forward');
The function '@(xtrain,ytrain,xtest,ytest)sum(ytest~=predict(TreeBagger(500,xtrain,ytrain),xtest))' generated the
following error:
Undefined function 'ne' for input arguments of type 'cell'.

Réponses (0)

Catégories

En savoir plus sur Signal Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by