一键导入
configuring-budget-limits
Imposes hard limits on maximum computational timesteps and financial cloud spend for hyperparameter sweeps and training loops.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Imposes hard limits on maximum computational timesteps and financial cloud spend for hyperparameter sweeps and training loops.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | Configuring Budget Limits |
| description | Imposes hard limits on maximum computational timesteps and financial cloud spend for hyperparameter sweeps and training loops. |
| version | 0.1.0 |
Reinforcement Learning loops can easily consume infinite compute resources scaling over thousands of parallel CPU rollouts and GPU gradient updates. To control costs, hard analytical caps must be established inside the training architectures (Ray Tune / Optuna).
Determine the theoretical limit of total_timesteps expected to achieve convergence based on similar algorithm families.
Define explicit termination criteria based on either time bounds or total iterations:
time_total_s=3600*24 (Max 24 hours).num_samples=50 in Ray Tune).Setup hyperparameter orchestrators with aggressive pruning (e.g., ASHA - Asynchronous Successive Halving algorithm).
heuristic_agent score by epoch 10 must be killed instantly to save compute.Budget Configuration:
Max_Timesteps_Per_Run: [Value]
Max_Trials_In_Sweep: [Value]
Early_Stopping_Threshold: [Value based on Heuristic]
Orchestrator agent for agent-01-discovery
Orchestrator agent for agent-02-simulation
Orchestrator agent for agent-03-baseline
Orchestrator agent for agent-04-training
Orchestrator agent for agent-05-evaluator
Orchestrator agent for agent-06-deployment