GRPO, DAPO, GSPO — these names have become the standard for LLM reasoning post-training, but all are caught in the same dilemma: Importance Sampling wants to push sample efficiency, but a single careless step blows up training; tightening the clip threshold makes the model conservative, low-confidence good reasoning paths are directly blocked, the exploration-stability balance is impossible. ByteDance Seed's UP (Unbounded Positive Asymmetric Optimization), posted on arXiv 2607.06987, is aimed right at this deadlock. The paper first formalizes the problem: the authors propose the concept of "Probability Capacity (Cap)", proving that the current mainstream conservative clip will structurally prematurely truncate the "right but low-probability" reasoning paths, which is exactly the root of the late-stage entropy collapse of LLM RL. UP's solution is crisp: use stop-gradient to anchor the policy to the current state, completely release the clip on positive advantage to get a stable and unbounded gradient encouraging exploration, and keep the standard clip on negative advantage to prevent training collapse. An asymmetric design solves both ends at once. Mathematically, the stop-gradient ratio of the positive branch simplifies exactly to REINFORCE's log-derivative form after differentiation, with no IS explosion risk, while expanding the exploration budget Cap from 1−(1+ϵhigh)πold to 1−πθ. Even more pleasing is the generality: UP doesn't pick algorithms, with token-level UP-DAPO/UP-GRPO and sequence-level UP-GSPO three instances all validated; it doesn't pick architectures, with Qwen3-14B (Dense), Qwen3-30B-A3B (MoE), and Qwen3-VL-8B (Vision-Language) all gaining points; it doesn't pick modality, with pure text reasoning and multimodal geometry problems both benefiting. The measured data is convincing — UP-DAPO on AIME24 lifts Avg@32 from 47.71 to 51.15, Best@32 from 80.49 to 81.79, with sustained higher entropy curves but barely any increase in KL and gradient norm; UP-GSPO pushes MoE peak Avg@32 from 52.71 to 55.73; UP-GRPO on VLM lifts Geometry3K peak from 59.30 to 62.60. This "plug-and-play loss function" attribute means any open-source RL framework can benefit by just swapping one line of objective, with almost zero landing cost. The community's "Awesome work, Seed!" represents the real excitement point — this isn't some new-model-architecture flex, but swapping in a more stable foundation for the entire LLM RL post-training stack. When everyone is racing RL training data and reward models, getting the training objective right has actually become the scarcest work.