save RandomForest B and use -v7.3 switch
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello I have a code of feature selection (backward) and I use Random Forest. I have matlab 7.12.0(R2011a) and I run the code parallel using 8 CPUs.
B = TreeBagger(100, predictors, target);
Then I get B, MSE and ntrees. next, I predict as
Ymodel = oobPredict(B);
and the save as
savepath = ('/Net/myname/');
sp = [savepath 'MSE_Ymodel_B.mat'];
save(sp, 'Ymodel, 'MSE', 'ntrees','B');
But after the job is finished successfuly, I get a warning messege and only 'B' is not being saved. The messege I received is
{Warning: Variable 'B' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping...}
Can anybody tell me how to use -v7.3 switch?
cheers, Yogesh
0 comentarios
Respuestas (1)
sinlin ray
el 16 de Feb. de 2016
you just need change the saving preference. preference—matlab-general-matfiles
0 comentarios
Ver también
Categorías
Más información sobre Classification Ensembles en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!