Convenience function to create a StabilityEnsemble with common presets.
Examples
if (FALSE) { # \dontrun{
# Default: 100 bootstraps, glmnet base learner
ensemble <- create_stability_ensemble("default")
# Fast: 50 bootstraps for quick exploration
ensemble <- create_stability_ensemble("fast")
# Thorough: 500 bootstraps for publication-quality results
ensemble <- create_stability_ensemble("thorough")
# Fit and predict
ensemble$fit(task)
probs <- ensemble$predict(task)
} # }