fix: config drift — province_supply=3 on RunPod, should be 1 - #28
Open
pcapriolo wants to merge 1 commit into
Open
fix: config drift — province_supply=3 on RunPod, should be 1#28pcapriolo wants to merge 1 commit into
pcapriolo wants to merge 1 commit into
Conversation
DEVLOG #152 changed province_supply from 3→1 and max_turns from 70→30 in the repo config, but sync_config_to_runpod.sh was never run. RunPod has been training with the old values for all iterations since. Also fixes sync script incorrectly listing province_supply as requiring a restart — it IS hot-reloadable (trainer.py:218). DEVLOG #154. Action: run sync_config_to_runpod.sh to push correct config. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
province_supply=3,max_turns=70since DEVLOG #152 changed the repo config toprovince_supply=1,max_turns=30. The sync script was never run.province_supplywas listed in RESTART_KEYS but it IS hot-reloadable (trainer.py:218). This false restart warning may have discouraged syncing.Action Required
After merge, run
sync_config_to_runpod.shto push the config. province_supply and max_turns will take effect via hot-reload at the next iteration — no training restart needed.Evidence (from losses.jsonl)
avg_turns: 52-57 (impossible if max_turns=30 were active)draw_rate: 0.68-0.77 (impossible with supply=1)avg_provinces: 0.34-0.48/player (impossible with supply=1)Test plan
🤖 Generated with Claude Code