How do I fix Error in Random Forest model

154 Views Asked by At

I'm trying to run my SDM by package biomod2 in R, but the random forest model showed the error that

Error: cannot allocate vector of size 572.0 Mb
Error in h(simpleError(msg, call)) : 
  error in evaluating the argument 'object' in selecting a method for function 'predict': object 'model.bm' not found

this is my code

myBiomodModelOut<-BIOMOD_Modeling( myBiomodData,
                                   models = c('GLM','GBM','GAM','CTA','ANN','SRE','FDA','RF','MAXENT.Phillips'),
                                   models.options = myBiomodOption,
                                   NbRunEval = 3,
                                   DataSplit = 80,
                                   Prevalence = 0.5,
                                   VarImport = 3,
                                   models.eval.meth = c('KAPPA','TSS','ROC','FAR','SR','ACCURACY','BIAS','POD','CSI','ETS'),
                                   SaveObj = TRUE,
                                   rescal.all.models = TRUE,
                                   do.full.models = FALSE,
                                   modeling.id = paste(myRespName,"FirstModeling",sep=""))

What can I do?

0

There are 0 best solutions below