Imagine you have a spice rack with five base sauces — soy, sriracha, lime, fish sauce, peanut butter. Every new recipe you've ever made is some weighted combination of those five. Now someone hands you a new target flavor profile. You don't need to cook from scratch; you just need to figure out the right proportions. PoEM treats RL-trained language and image models exactly this way: if you already have a handful of models each post-trained on different rewards, a new reward's policy can be approximated as a weighted combination in log-probability space — no new RL run required. The committed claim: given a set of foundation models already post-trained via RL on different reward functions, PoEM can predict the output policy for a novel reward function without running any additional RL. The theoretical anchor is clean — if the new reward is a linear combination of existing rewards, the optimal policy in log-space is provably a linear combination of the existing log-policies. But the paper's more interesting empirical finding is that even when rewards are NOT linearly related, the log-policies from RL training span an approximately low-rank subspace. This is a structural observation about the geometry of RLHF outcome space, not just a trick. The ladder position is tricky to evaluate because there's no established "predict RL outcomes without running RL" benchmark to compare against. The closest relatives are model merging methods (like TIES, DARE, and linear mode connectivity work) and reward model ensembling, but those operate in weight space or reward space, not in log-policy output space. The paper validates on synthetic reward mixtures and real rewards across text (language model alignment) and image (diffusion model) modalities. Against the natural baseline of actually running RL, PoEM approximates the target policy well when the low-rank assumption holds, but necessarily degrades when the new reward lives far outside the span of existing reward basis functions. Architecturally, this sits in the model merging / policy composition family, but operates at the output distribution level rather than in parameter space. The key structural bet is that KL-regularized RL (the standard RLHF formulation) produces optimal policies that are exponential tilts of the base policy — meaning log-policies are linear in reward space. The method estimates combination coefficients either by regression on reward values or by matching basis policy outputs on samples, making it lightweight: you need forward passes through existing models, not backward passes through a training loop. The compute savings are proportional to the cost of a full RL training run, which for frontier models is substantial. Integrity is mixed. The theoretical result for the linear-reward case is clean and provable. The empirical low-rank observation is demonstrated but not yet stress-tested at frontier scale. The paper shows results on both synthetic and real reward setups across text and image modalities, which is good breadth. However, the baselines are somewhat soft — the main comparison is against actually running RL (the gold standard) and simple interpolation methods, rather than against the strongest model merging techniques from the weight-space literature. The paper is transparent about degradation when the low-rank assumption breaks, which is a positive integrity signal. The milestone to watch is whether this low-rank structure in log-policy space persists at frontier scale — models with hundreds of billions of parameters trained on complex, multi-objective RLHF setups. If the effective rank of the policy subspace stays manageable (say, under 10-20 basis policies needed to approximate arbitrary new rewards), this becomes a serious infrastructure tool. If the rank grows linearly with reward complexity, the savings evaporate. The obvious next experiment the authors didn't run: applying PoEM to frontier-scale models (70B+ parameters) with production RLHF reward models, and measuring how many basis policies you actually need to cover the space of reward functions practitioners care about. The honest read is (a) — compute budget. Running multiple full RLHF training runs on 70B models to create the basis set, plus evaluating PoEM's predictions against gold-standard RL on the same models, is expensive. The theory and small-scale experiments justify the investment; the authors are likely positioning for exactly this follow-up.