Fix bounded S/R training portfolio calendars
This commit is contained in:
@@ -23,7 +23,11 @@ TRAINING_ARMS = (
|
||||
"confirmed_rounds",
|
||||
"gate_v2",
|
||||
)
|
||||
LOCKABLE_ARMS = TRAINING_ARMS[1:]
|
||||
# confirmed_rounds failed the post-2024 validation decisively and must not be
|
||||
# selected again merely because a corrected training curve looks attractive.
|
||||
LOCKABLE_ARMS = tuple(
|
||||
arm for arm in TRAINING_ARMS[1:] if arm != "confirmed_rounds"
|
||||
)
|
||||
|
||||
|
||||
def _add_common(parser: argparse.ArgumentParser) -> None:
|
||||
|
||||
Reference in New Issue
Block a user