From 258791fd9909c56858b9fdb55900ae2efcd14b8b Mon Sep 17 00:00:00 2001 From: Yuren Hao Date: Sat, 18 Jul 2026 23:30:03 -0500 Subject: =?UTF-8?q?governor=E6=8E=A5=E7=BA=BF=E4=BF=AE=E5=A4=8D:res/rho?= =?UTF-8?q?=E9=9D=9E=E6=B3=95=E5=88=A4=E6=8D=AE=E5=B8=B8=E5=BC=80(beta=5Fc?= =?UTF-8?q?ap=5Frho>0=E5=8D=B3=E7=94=9F=E6=95=88),crown-3=E7=9A=8418k?= =?UTF-8?q?=E5=9E=83=E5=9C=BE=E6=AD=A5=E6=AD=A3=E6=98=AF=E4=BB=8E'?= =?UTF-8?q?=E8=A1=A8=E5=8F=AA=E6=8E=A5beta=5Fsync'=E8=BF=99=E4=B8=AA?= =?UTF-8?q?=E6=B4=9E=E8=BF=9B=E7=9A=84=E8=B4=A6;=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E5=88=A4=E5=AE=9A=3Dadaptive=20beta=20bug,=E6=88=90=E7=AB=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_014FAPDWQ49M5Ye3NpTndTpn --- ep_run/casc_eq_train.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ep_run') diff --git a/ep_run/casc_eq_train.py b/ep_run/casc_eq_train.py index 0cd46ee..b3239f1 100644 --- a/ep_run/casc_eq_train.py +++ b/ep_run/casc_eq_train.py @@ -501,7 +501,10 @@ def ep_step(x, y): # SYNCHRONOUS acceptance (--beta_sync): judge THIS step by THIS step's own relax # telemetry — an out-of-window beta can be attempted but can never COMMIT. if (not math.isfinite(gd)) or (gd > dthr and not args.noguard): return False - if args.beta_sync > 0 or args.wsync > 0: + if args.beta_sync > 0 or args.wsync > 0 or args.beta_cap_rho > 0: + # if you measure the ceiling, illegality COUNTS — crown-3's poison entered + # through this gate being wired only to beta_sync (18k accepted garbage steps + # with the rho-meter screaming); the meter and the gate are now永久 connected. res_s = ddp_bcast_scalar(GOV.get('res', 0.0)) rho_s = ddp_bcast_scalar(GOV.get('rho') or 0.0) if res_s > 0.02 and rho_s > args.beta_cap_rho: return False -- cgit v1.2.3