We found an error for saving GEDI models in R version 4.4.0 and R 4.4.2.
> saveRDS(model, file=“model.rds”)) Error: C stack usage 7973576 is too close to the limit
While we are tying to solve the issue, please use the 'save' function for saving GEDI objects in R version 4.4.0 and above:
save(model, file="model.RData")
And then loading it via
load('model.RData')
R version 4.3.1 does not present this issue.