최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 fixed config → 매 dynamic schedule". Parameter control 은 training / inference / game system 의 knob (learning rate, temperature, difficulty) 을 매 시간/state 에 따라 adaptively 변경하는 전략. 매 generative AI 의 sampler param (temp/top-p/top-k), RL 의 exploration ε, game 의 dynamic balancing 모두 같은 framework.
매 핵심
매 3 도메인
ML training: lr schedule (cosine, warmup), weight decay, dropout 의 adaptive.
Generative inference: temperature, top-p, top-k, repetition penalty 의 per-token 조정.
Game balance: dynamic difficulty adjustment (DDA), procedural generation 의 parameter.
fromvllmimportLLM,SamplingParamsllm=LLM("meta-llama/Llama-3.3-70B-Instruct")creative=SamplingParams(temperature=0.9,top_p=0.95,top_k=50,repetition_penalty=1.1,max_tokens=512)factual=SamplingParams(temperature=0.2,top_p=0.9,top_k=20,max_tokens=256)llm.generate("Write a poem.",creative)llm.generate("Capital of FR?",factual)