feat: add online ppo with value-model critic and gae advantages

- register online_ppo train type backed by PPOStrategy: token-level clipped surrogate over GAE advantages plus masked value regression against rollout-pinned returns, with explained-variance metrics
- fold the reference-KL penalty (k3 estimator) into per-token rewards before GAE and pin advantages/returns on RolloutResult so replayed gradient steps optimize fixed targets
- add self-contained ValueModel critic with a zero-initialized value head and backbone warm-started from policy weights; AutoRegressiveLM stays untouched and trunk parity is pinned by tests
- step the critic's own optimizer outside the policy-version lock with the same max_grad_norm clipping as the policy
- persist critic state as value_model.pt/value_optimizer.pt checkpoint extras; resume restores it, fails loudly when missing, and the train.sh completeness check requires the extras for online_ppo configs
- extract shared rollout sequence/logprob helpers from GRPO (behavior unchanged) and add ppo_gamma/ppo_gae_lambda/ppo_vf_coef CLI options
This commit is contained in:
2026-09-05 01:59:50 +08:00
parent 816b96a58a
commit 350e4a1849
17 changed files with 1390 additions and 72 deletions
+14 -1
View File
@@ -22,13 +22,26 @@ validate_job_name() {
die "Invalid TRAIN_JOB_NAME '$1'; use letters, numbers, dot, underscore, or dash"
}
checkpoint_extra_files() {
# Additional files a complete checkpoint must contain for the strategy
# configured in the given training YAML. PPO persists critic state as
# checkpoint extras (value_model.pt / value_optimizer.pt); a resume
# without them must not look complete.
local config="$1"
[[ -n "${config}" && -f "${config}" ]] || return 0
if grep -Eq '^[[:space:]]*train_type:[[:space:]]*["'\'']?online_ppo' "${config}"; then
printf 'value_model.pt value_optimizer.pt'
fi
}
checkpoint_is_complete() {
local checkpoint="$1"
local file
[[ -d "${checkpoint}" ]] || return 1
for file in meta.json config.json model.safetensors optimizer.pt scheduler.pt; do
for file in meta.json config.json model.safetensors optimizer.pt scheduler.pt ${CHECKPOINT_EXTRA_FILES:-}; do
[[ -s "${checkpoint}/${file}" ]] || return 1
done
+1
View File
@@ -34,6 +34,7 @@ fi
if [[ -n "${TRAIN_CONFIG}" ]]; then
[[ -f "${TRAIN_CONFIG}" ]] || die "Training config not found: ${TRAIN_CONFIG}"
fi
export CHECKPOINT_EXTRA_FILES="$(checkpoint_extra_files "${TRAIN_CONFIG}")"
[[ -r /data ]] || die "Training data directory is not readable: /data"
mkdir -p "${CHECKPOINT_DIR}"
+36 -2
View File
@@ -21,7 +21,7 @@ from astrai.config.train_config import (
TRAIN_TYPES,
)
from astrai.dataset import DatasetFactory, dpo_collate_fn, grpo_collate_fn
from astrai.model import AutoRegressiveLM
from astrai.model import AutoRegressiveLM, ValueModel
from astrai.model.components.decoder_block import DecoderBlock
from astrai.optim import OptimizerFactory
from astrai.trainer import SchedulerFactory, Trainer
@@ -212,6 +212,27 @@ _SPECS = [
default=0.01,
help="GRPO KL penalty coefficient.",
),
OptSpec(
"ppo_gamma",
"Algorithm",
type=float,
default=1.0,
help="PPO reward discount factor.",
),
OptSpec(
"ppo_gae_lambda",
"Algorithm",
type=float,
default=0.95,
help="PPO GAE bias/variance trade-off.",
),
OptSpec(
"ppo_vf_coef",
"Algorithm",
type=float,
default=0.5,
help="PPO value-loss coefficient.",
),
OptSpec(
"moe_aux_loss_coef",
"Algorithm",
@@ -408,6 +429,10 @@ def create_model(config):
return AutoRegressiveLM(config).to(dtype=torch.bfloat16)
def create_value_model(config):
return ValueModel(config).to(dtype=torch.bfloat16)
def create_optimizer(
model, optimizer_name: str = "muon_adamw", **kwargs
) -> optim.Optimizer:
@@ -502,6 +527,9 @@ def train(
"clip_eps": kwargs.pop("grpo_clip_eps"),
"kl_coef": kwargs.pop("grpo_kl_coef"),
"group_size": kwargs.pop("group_size"),
"gamma": kwargs.pop("ppo_gamma"),
"gae_lambda": kwargs.pop("ppo_gae_lambda"),
"vf_coef": kwargs.pop("ppo_vf_coef"),
}
rollout_interval = kwargs.pop("rollout_interval", 512)
@@ -511,6 +539,11 @@ def train(
rollout_top_p = kwargs.pop("rollout_top_p", 0.9)
rollout_max_tokens = kwargs.pop("rollout_max_tokens", 1024)
reward_model_fn: Callable[[], BaseRewardModel] | None = None
critic_model_fn = None
if train_type == "online_ppo":
# The optimizer defaults to the policy's; critic_optimizer_fn can
# override it in the TrainConfig.
critic_model_fn = partial(create_value_model, config)
executor_kwargs = {}
if parallel_mode == "ddp":
@@ -622,7 +655,7 @@ def train(
collate_fn = dpo_collate_fn
elif train_type == "grpo":
collate_fn = grpo_collate_fn
elif train_type in ("online_grpo", "online_dpo"):
elif train_type in ("online_grpo", "online_dpo", "online_ppo"):
collate_fn = None
train_config = TrainConfig(
@@ -668,6 +701,7 @@ def train(
rollout_top_p=rollout_top_p,
rollout_max_tokens=rollout_max_tokens,
reward_model_fn=reward_model_fn,
critic_model_fn=critic_model_fn,
moe_aux_loss_coef=kwargs.pop("moe_aux_loss_coef", 0.01),
)
+1
View File
@@ -55,6 +55,7 @@ load_config() {
die "Failed to load runtime configuration"
eval "${exports}"
validate_job_name "${TRAIN_JOB_NAME}"
export CHECKPOINT_EXTRA_FILES="$(checkpoint_extra_files "${CONFIG_FILE}")"
}
compose() {