Let's say I have for models like so:
stack_models = stacks() |>
add_candidates(model1) |>
add_candidates(model2) |>
add_candidates(model3) |>
add_candidates(model4)
Is there a way to:
- try just model 1, 2, ...
- try model 1 + 2, 1 + 3, ...
- try model 1 + 2 + 3, 1 + 2 + 4, ...
- try all four
automatically?