Binarized Reward Optimization (BRO)
- BRO is a framework that recasts binary supervision as an expected reward maximization problem, defining actions as binary decisions in a one-step RL setting.
- Its methodology employs tailored objectives like BinaryPPO, Beta normalization, and Bayesian estimators to stabilize reward signals and mitigate variance issues.
- Empirical results show significant gains in classification accuracy, improved reasoning metrics, enhanced protein design outputs, and robust performance in offline RL tasks.
Binarized Reward Optimization (BRO) denotes a family of policy-optimization schemes in which supervision is represented as binary or binarized reward signals and the learning problem is reformulated as reward maximization rather than direct likelihood fitting. In current arXiv usage, the term spans several closely related settings: offline binary decision learning for LLM classifiers, where BinaryPPO is presented as an explicit instantiation of BRO; group-based reinforcement learning with verifiable pass/fail rewards for reasoning models; offline post-training of protein LLMs using positive/negative labels derived from proxy rewards; and offline preference-based reinforcement learning in which pairwise preferences are converted into per-step binary rewards (Pandey et al., 2 Feb 2026, Kim et al., 19 Mar 2026, Li et al., 17 Jun 2026, Xu et al., 2024).
1. Formal scope and problem classes
In the binary-classification formulation, BRO recasts supervised binary prediction as a one-step reinforcement-learning problem. The input text is the state , the binary decision is the action , the policy is a stochastic classifier , and the objective is the expected reward
BinaryPPO emphasizes that this setting is strictly offline: there is no online environment interaction, all learning occurs from a static dataset , and the reward is computed from and the model’s own predicted probability (Pandey et al., 2 Feb 2026).
In RLVR, BRO appears as on-policy, bandit-like post-training with verifiable rewards. For each prompt , the policy samples responses , and a verifier returns a Bernoulli reward
GRPO is treated as a canonical BRO method because it uses groups of sampled responses per prompt, binary rewards, and group-relative normalized advantages (Kim et al., 19 Mar 2026).
In unsupervised protein design, BRO is embedded in a KL-regularized RLHF objective
0
but the reward is not human-labeled. Instead, it is derived from task-agnostic proxy scores based on intrinsic model uncertainty and extrinsic semantic consistency from protein representation models. BRO then uses binary labels over generated sequences, rather than continuous rewards, to steer the fine-tuned model relative to the reference model 1 (Li et al., 17 Jun 2026).
In offline preference-based RL, binary reward labeling converts trajectory preferences into scalar rewards on transitions. For a preference dataset 2, the non-overlapping case admits an exact binary solution: every step in a chosen trajectory receives 3, and every step in a rejected trajectory receives 4. This reduction allows any reward-based offline RL algorithm to be applied without modifying the underlying optimizer (Xu et al., 2024).
2. Objective functions and canonical formulations
BinaryPPO instantiates BRO through a PPO-style objective adapted to a binary action space and an offline dataset. Its core reward is
5
where 6 if 7 and 8 if 9. The policy update uses the clipped PPO surrogate with importance ratio
0
and a one-step value baseline 1 with advantage
2
The same framework includes a value loss, a supervised CE regularizer, and entropy regularization, yielding a trust-region-style offline BRO objective rather than naive 0/1 reward maximization (Pandey et al., 2 Feb 2026).
In the protein-language setting, BRO is a binary logistic objective against a reference policy. Sequences are binarized into positive and negative sets, 3 and 4, by ranking generated samples with a proxy reward and keeping only the top-4 and bottom-4 sequences per prompt. The practical loss is
5
where 6 for 7 and 8 for 9. Positives are thus pushed to have higher relative likelihood under 0 than under 1, and negatives are pushed in the opposite direction (Li et al., 17 Jun 2026).
In offline preference-based RL, BRO appears in an even more literal form. Under the no-overlap assumption, the optimal binary labels are
2
and standard reward-based offline RL is then run on the labeled dataset. For Q-learning, the per-pair Bellman objective becomes
3
This construction makes BRO a general interface between pairwise preferences and reward-based offline RL algorithms such as CQL, IQL, MOPO, and COMBO (Xu et al., 2024).
Taken together, these formulations show that BRO is not a single optimizer. It is a design pattern in which binary supervision is converted into either expected-return maximization with a binarized reward or a logistic comparison between a trainable policy and a reference policy.
3. Reward shaping, estimation, and normalization
A central theme in BRO research is that binary supervision rarely remains a raw 4 signal inside the optimizer. BinaryPPO explicitly contrasts its confidence-weighted reward with naive
5
arguing that hard 0/1 rewards are flat with respect to confidence and poorly calibrated for PPO. Its logarithmic shaping 6 yields a reward that is binary in correctness through 7 but continuous in the policy’s own probability, thereby penalizing overconfident errors and giving ambiguous cases smaller magnitudes (Pandey et al., 2 Feb 2026).
BNPO addresses the same binary-reward regime from a distributional-normalization perspective. It models the per-question success probability 8 as a Beta random variable and defines the normalized advantage
9
where 0 is a Beta density. Under the assumption that 1, Theorem 1 gives the variance-minimizing normalization parameters
2
REINFORCE with baseline is recovered by 3, while GRPO corresponds to 4 up to a constant factor, so BNPO generalizes both under binary-valued rewards (Xiao et al., 3 Jun 2025).
DBB reformulates group-based RLVR as finite-sample Bernoulli estimation. For each prompt and epoch, rewards are modeled as 5, and the usual group mean and variance are replaced by discounted Beta-Bernoulli statistics
6
The estimator
7
is biased but lower-variance than the point estimator, and its variance is multiplied by 8. Because the Beta counts remain strictly positive, DBB avoids estimated variance collapse in small-9 groups and provides a non-degenerate advantage signal even when all current rollouts succeed or fail (Kim et al., 19 Mar 2026).
ReDit changes the reward itself by injecting zero-mean noise,
0
with 1 or 2. The expected gradient remains unbiased,
3
but the reward distribution becomes continuous at training time. This produces non-zero gradients in flat all-zero or all-one regions and softens abrupt 0-to-1 transitions that otherwise generate extreme normalized advantages (Wei et al., 23 Jun 2025).
4. Stability mechanisms and optimization dynamics
BRO methods devote substantial machinery to preventing policy collapse, variance collapse, and pathological gradient behavior. In BinaryPPO, three stabilizers are explicit: PPO clipping, entropy regularization, and supervised CE regularization. The full loss is
4
The ablation “Removing Entropy Regularization” collapses performance across tasks: on Qwen-2.5-3B, average accuracy drops from approximately 5 to approximately 6, with a similar collapse on Gemma-2-2B. BinaryPPO also reports that advantage peaks at intermediate confidence 7–8, reflecting the interaction among confidence-weighted reward, value baseline, and PPO clipping (Pandey et al., 2 Feb 2026).
Group-based BRO for RLVR faces a different instability: empirical variance collapse. In naive GRPO, if all rewards in a group are identical, the sample variance is zero and the normalized advantages become undefined or are practically set to zero. DBB addresses this statistically rather than heuristically. Its discounted Beta posterior ensures 9, so the posterior variance estimate remains positive in finite training. The practical effect is that zero-variance groups cease to be dead batches, and the reward estimator becomes more sample-efficient in the low-rollout regime typical of RLVR (Kim et al., 19 Mar 2026).
ReDit diagnoses “gradient anomaly” under discrete rewards: gradient vanishing when batches are uniform and gradient explosion when a few samples flip from 0 to 1. It reports many red vanishing-gradient points and purple exploding-gradient spikes without dithering, and much smoother gradient norms when noise is added. BNPO reaches a related conclusion from a different angle: adaptive Beta normalization yields the most stable gradient norms over time relative to REINFORCE, GRPO, and REINFORCE++, supporting the claim that binary-reward training requires normalization that tracks the evolving distribution of success probabilities (Wei et al., 23 Jun 2025, Xiao et al., 3 Jun 2025).
A broader implication is that BRO systems are usually engineered around variance control rather than reward definition alone. The binary signal identifies success or failure, but stable learning depends on how that signal is centered, normalized, smoothed, or regularized.
5. Empirical domains and reported results
Reported BRO results span classification, reasoning, protein design, and offline control, and they differ not only in optimizer but also in how the binary signal is constructed and used (Pandey et al., 2 Feb 2026, Kim et al., 19 Mar 2026, Xiao et al., 3 Jun 2025, Wei et al., 23 Jun 2025, Li et al., 17 Jun 2026, Xu et al., 2024).
| Domain | Representative BRO formulation | Reported results |
|---|---|---|
| Binary classification | BinaryPPO | Up to 2 accuracy; typically 3–4 percentage-point improvements over SFT |
| RLVR reasoning | GRPO-DBB, BNPO, ReDit | DBB: average Acc@8 gains of 5 in-distribution and 6 out-of-distribution on 1.7B/8B; ReDit reaches GRPO-like performance with approximately 7 training steps |
| Protein design | BRO for PLMs | Pfam700 average keyword recovery: 8 vs base 9 on 151M; 0 vs base 1 on 764M |
| Offline preference-based RL | BRL + offline RL | D4RL total score 2 vs Oracle 3, RM 4, IPL 5 |
BinaryPPO reports gains across eight binary classification benchmarks, including CLadder, SciRIFF, BoolQ, FEVER, IMDB, OpenAI Moderation, Detect-Jailbreak, and JailbreakBench. A concrete example on Qwen-2.5-3B for SciRIFF is: Base 6, SFT(20) 7, PPO 8, and BinaryPPO 9–0. Its OOD tests include reconstructed CLadder, where Gemma-2-2B reaches 1 OOD accuracy and Qwen reaches 2, and cross-dataset moderation transfer between JB and OpenAI Moderation that remains significantly above chance (Pandey et al., 2 Feb 2026).
In RLVR reasoning, GRPO-DBB is evaluated on DAPO-Math-17k with 8 rollouts per prompt. On six in-distribution benchmarks, the 1.7B model improves from 3 to 4 average Acc@8 and the 8B model from 5 to 6. On three out-of-distribution benchmarks, gains are larger: 7 to 8 for 1.7B and 9 to 0 for 8B. BNPO reports the best average performance across four math benchmarks for Qwen2.5-Math-7B, with average score 1 versus 2 for REINFORCE, 3 for ReMax, 4 for GRPO, and 5 for REINFORCE++. ReDit reports that it achieves performance comparable to vanilla GRPO with only approximately 6 the training steps and still shows a 7 performance improvement over vanilla GRPO when trained for a similar duration; on MATH, GRPO ends at 8 while ReDit reaches 9 (Kim et al., 19 Mar 2026, Xiao et al., 3 Jun 2025, Wei et al., 23 Jun 2025).
For protein LLMs, BRO is evaluated on compositional OOD Func2Seq tasks constructed from seven Pfam families. On the 151M ProGen2 model, the average pass@1 keyword recovery is 00 for BRO, 01 for SRO, 02 for DPO, 03 for KTO, and 04 for the base model. On the 764M model, BRO reaches 05, SRO 06, DPO 07, KTO 08, and the base model 09. Figure-level analysis further indicates that BRO and SRO improve pass@k strongly for small 10 and then converge toward the base model at large 11, which the paper interprets as re-prioritization of controllable sequences rather than severe support collapse (Li et al., 17 Jun 2026).
In offline preference-based RL, binary reward labeling is evaluated on D4RL HalfCheetah, Hopper, and Walker2d tasks. The aggregate total scores are Oracle 12, BRL 13, RM 14, and IPL 15. BRL is close to Oracle on several medium-expert tasks, including HalfCheetah ME 16 versus Oracle 17, Hopper ME 18 versus 19, and Walker2d ME 20 versus 21. The paper also reports that BRL usually outperforms reward modeling under overlapping-trajectory settings and degrades more gracefully when the preference dataset is reduced (Xu et al., 2024).
6. Limitations, misconceptions, and open directions
A recurring misconception is that BRO is synonymous with naive hard 22 reward optimization. The cited formulations contradict that view. BinaryPPO uses sign-binarized correctness with logarithmic confidence shaping; BNPO replaces static normalization with an adaptive Beta density; DBB uses discounted Bayesian estimation of Bernoulli success probabilities; and ReDit perturbs discrete rewards with zero-mean noise to make the training signal continuous at the batch level (Pandey et al., 2 Feb 2026, Xiao et al., 3 Jun 2025, Kim et al., 19 Mar 2026, Wei et al., 23 Jun 2025).
Another misconception is that BRO is intrinsically online or intrinsically sequence-level. BinaryPPO is strictly offline and operates on one-step binary decisions from a static dataset. BRL is also offline and turns trajectory preferences into per-step 23 rewards. By contrast, GRPO-style RLVR is on-policy and sequence-level, while protein BRO is an offline relative-likelihood objective against a reference model. BRO is therefore better understood as a reward-design and optimization family than as a single training protocol (Pandey et al., 2 Feb 2026, Xu et al., 2024, Li et al., 17 Jun 2026).
The limitations are equally domain-specific. DBB is tailored to binary verifiable rewards, assumes per-prompt independence, and uses a constant discount factor 24, which may be mismatched to changing non-stationarity across training. BNPO’s theory depends on binary rewards and on an uncorrelation assumption between 25 and the normalized reward term. ReDit is explicitly helpful for discrete or sparse rewards and shows no benefit when the reward model is already continuous in 26. Protein BRO depends on proxy-reward selection, uses a heuristic top-4/bottom-4 binarization rule, and is validated only in silico. BRL is limited to the offline setting and does not address active preference querying (Kim et al., 19 Mar 2026, Xiao et al., 3 Jun 2025, Wei et al., 23 Jun 2025, Li et al., 17 Jun 2026, Xu et al., 2024).
The current literature identifies several extension paths. These include adaptive or learned dithering, multi-level discrete rewards, confidence-aware binarization, uncertainty-aware optimization, combining unsupervised signals with minimal human feedback, and extending Beta-based theory beyond strict Bernoulli/Beta assumptions. A plausible implication is that future BRO systems will place even greater emphasis on estimator design and reward calibration, rather than treating binary rewards as intrinsically self-sufficient (Wei et al., 23 Jun 2025, Xu et al., 2024, Li et al., 17 Jun 2026, Xiao et al., 3 Jun 2025).