최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
defstutter_step(unit,enemy):ifunit.weapon_ready:returnAction.attack(enemy)ifdist(unit,enemy)<unit.rangeandenemy.range>unit.range:returnAction.move(away_from(enemy))returnAction.move(toward(enemy))# close gap
importgymnasiumasgymfromstable_baselines3importPPOenv=gym.make("SC2MoveToBeacon-v0")# 단순 micro envmodel=PPO("MultiInputPolicy",env,n_steps=2048,batch_size=64,learning_rate=3e-4,gamma=0.99,verbose=1)model.learn(total_timesteps=2_000_000)
League training 개념 (AlphaStar)
# Main agents + Main exploiters + League exploiters; PFSP matchmaking# Prioritized Fictitious Self-Play: 약한 상대일수록 자주 매칭하지 않음
Replay-based behavior cloning
# 1) replay parse → (state, action) pairs# 2) supervised cross-entropy on actions# 3) RL fine-tune from BC checkpoint (jumpstart RL exploration)