Member Junction
    Preparing search index...

    Explicit resource budget for an experiment session — the bounded-autonomy guardrail (plan §8.4). Enforced by Record Set Processing's budget gate within each wave and re-checked by the orchestrator between waves.

    interface Budget {
        MaxComputeCost?: number;
        MaxRuns?: number;
        MaxWallclockMinutes?: number;
    }
    Index

    Properties

    MaxComputeCost?: number

    Max total compute cost the session may spend.

    MaxRuns?: number

    Max number of training runs/iterations the session may execute.

    MaxWallclockMinutes?: number

    Max wall-clock minutes the session may run.