Bounded Personalization Frameworks
- Bounded personalization frameworks are defined as constrained optimization problems that restrict personalization through explicit limits on exposure, fairness, and data use.
- They integrate algorithmic approaches from bandits, reinforcement learning, supervised learning, and LLMs to enforce operational bounds on user-specific adaptations.
- Practical implementations demonstrate that enforcing these bounds optimizes reward, minimizes bias, and enhances privacy while preserving overall user satisfaction.
Across recent work, bounded personalization denotes formulations in which personalization is optimized under explicit limits rather than unconstrained per-user adaptation. The limits may be exposure intervals over sensitive content-groups, a hard cap on cross-user disparity, a budget of deployable policies, lower bounds on the reliability of subgroup audits, mutual-information caps on latent user information, tiered policy restrictions on model behavior, or local-processing constraints on cross-platform data use (Celis et al., 2017, Borgs et al., 2023, Ivanov et al., 2024, 2502.02786, Mishra, 8 Apr 2026, Kirk et al., 2023, Lin et al., 10 May 2026). Taken together, these works treat personalization as a constrained optimization problem whose objective may be reward, social welfare, explanation faithfulness, privacy-preserving relevance, or user-governed utility, while the constraint set specifies how far the system may deviate from uniform treatment, default alignment, or bounded data use.
1. Recurring formal structure
Several representative formulations make the bound explicit at the level of the feasible set.
| Framework | Formal bound | Stated role |
|---|---|---|
| "Fair Personalization" (Celis et al., 2017) and "An Algorithmic Framework to Control Bias in Bandit-based Personalization" (Celis et al., 2018) | controls how much personalization is allowed on group | |
| "Disincentivizing Polarization in Social Networks" (Borgs et al., 2023) | encodes a hard cap on the level of personalization | |
| "Personalized Reinforcement Learning with a Budget of Policies" (Ivanov et al., 2024) | deploy only policies, with | policy budget |
| "When Machine Learning Gets Personal: Understanding Fairness of Personalized Models" (2502.02786) | and | bounds the number of personal attributes that can be used to reliably validate benefits of personalization |
| "Personalisation within bounds" (Kirk et al., 2023) | Tier 1, Tier 2, Tier 3 constraint sets | policy-specified restrictions and requirements |
| "Personalization as a Game" (Mishra, 8 Apr 2026) | or | privacy-personalization tradeoff |
| "LLM Agents Enable User-Governed Personalization Beyond Platform Boundaries" (Lin et al., 10 May 2026) | 0 may not condition on any dataset 1 | bounded scope |
In these formulations, the personalized system is not defined only by a user-conditioned predictor or policy. It is defined jointly by an objective and a restriction on admissible personalization. This suggests that bounded personalization is less a single fairness metric than a family of constrained learning and decision problems.
A second recurring feature is that the bound is operational rather than merely descriptive. In the bandit literature it appears as a polytope or a 2-constraint; in represented MDPs it appears as an upper bound on the number of policies; in personalized supervised learning it appears as a limit on the number of personal attributes that can be audited reliably; in LLM work it appears as policy tiers, discrete reasoning modes, privacy caps, or local-only data processing. The significance of the framework lies in making these restrictions first-class objects of optimization rather than post hoc evaluation criteria.
2. Fairness-constrained bandits and the original bounded-personalization formulation
The foundational bandit formulation models personalization as a contextual bandit. At each round 3, a user arrives with type 4, there are 5 items 6, and after choosing arm 7 one receives a stochastic reward 8. The unconstrained objective is to learn a policy 9 maximizing 0. Bounded personalization replaces this with a randomized policy 1 satisfying a linear constraint set
2
where the items are partitioned or grouped into content-groups 3. The practitioner-supplied bounds 4 control how much personalization is allowed on group 5; smaller intervals 6 force more uniform treatment, while larger intervals allow more extreme personalization. Under the requirement
7
the worst-case disparity in the total mass placed on any group 8 between any two user types is at most 9, which leads to the group-fairness metric 0 defined from 1 in eqs. (1)–(2) (Celis et al., 2017).
Algorithmically, the original proposal uses optimism over the feasible polytope: initialize mean estimates, compute upper-confidence rewards, solve a linear program over 2, sample an arm from the resulting distribution, and update the estimates. In the single-context case, the expected fair regret is
3
where 4 is the vertex gap of 5; if 6, the regret grows only poly-logarithmically in 7, and in the multi-context case the bound scales linearly in 8 (Celis et al., 2017).
The later full version sharpens the algorithmic picture with two concrete methods. L9-OFUL adapts OFUL to an L0-confidence set so that the inner maximization over 1 remains a small LP; Constrained-2-Greedy mixes exploitation on the current empirical best 3 with forced exploration from a fixed interior point 4. The corresponding guarantees are
5
with probability at least 6 for L7-OFUL, and
8
for Constrained-9-Greedy when 0. Empirically, on the YOW news dataset, enforcing a risk-difference guarantee by setting 1 yields revenue loss 2 for the 3-rule (4), while Fair-EPS runs in 5 versus Fair-OFUL’s 6 for 7 on the same machine (Celis et al., 2018).
These bandit formulations established the canonical bounded-personalization pattern: optimize reward, but only over a restricted family of recommendation distributions. Their importance is that the restriction is enforced at every round, not only in expectation over a population.
3. Cross-user homogenization caps and anti-polarization constraints
A distinct line of work studies bounded personalization in multi-user social networks. Here the platform interacts with 8 users over 9 timesteps, choosing content for each user from 0 categories. To avoid filter bubbles while still allowing personalization, the platform imposes the 1-constraint
2
for every round 3, every user 4, and every arm 5. Full personalization corresponds to 6 and complete homogenization corresponds to 7; hence, 8 encodes a hard cap on the level of personalization (Borgs et al., 2023).
The paper first analyzes a naive formalization of the intuition that if some users are shown some category of content, then all users should see at least a small amount of that content. It shows that this naive formalization has unintended consequences: it leads to “tyranny of the majority” with the burden of diversification borne disproportionately by those with minority interests. The adopted 9-constraint distributes this burden more equitably. Under the hard-constraint formulation, the platform competes with the best fixed distributions 0 satisfying the same constraint. For 1, the multi-agent UCB algorithm solves at each round a linear program with objective 2 and achieves
3
while for 4 robust-UCB achieves
5
The lower bounds are nearly matching: for 6 and 7, any algorithm must suffer 8, and for all 9, all 0, 1 (Borgs et al., 2023).
The framework also analyzes penalty-augmented variants in which the platform can exceed the cap but pays a penalty proportional to constraint violation. Penalty-UCB achieves 2 regret to the best fixed penalized policy, and under taxation on empirical frequencies it achieves
3
On MovieLens with 4 users and 5 genres, the empirical picture is nuanced: for polarized subgroups such as romance versus thriller, homogeneity sets in only near 6, whereas for similar subgroups such as thriller versus horror, convergence occurs much earlier near 7. Utility loss is minor even for moderate 8, with only a few percent drop in average reward (Borgs et al., 2023).
This work is important because it separates two ideas that are often conflated. Diversification is not identical to fairness, and a poorly designed diversification rule can itself be inequitable. The bounded parameter 9 therefore functions as both a technical constraint and a normative control knob.
4. Policy budgets and continuously adaptive personalization
Bounded personalization also appears as a hard limit on the number of deployable policies. In represented MDPs,
0
there are 1 agents, each with its own reward function 2, but only 3 policies may be deployed, with 4. Each agent 5 is assigned to a representative via 6, and the objective is to jointly choose 7 and 8 to maximize utilitarian social welfare:
9
The extreme cases are explicit: 00 recovers a single “universal” policy for everyone, while 01 recovers unconstrained full personalization. The EM-like algorithm alternates PPO-based policy improvement on aggregated rewards
02
with hard reassignment
03
whereas the end-to-end variant parameterizes 04 by a softmax over logits 05 and updates assignments jointly with the actor parameters. Under standard assumptions on the RL sub-solver, the alternating E- and M-steps never decrease utilitarian social welfare and converge in finitely many steps to a local maximum; no formal global-optimality or approximation-ratio bounds are provided, and the problem is NP-hard in general. In Resource Gathering, EM/end2end reach 06 already at 07 and 08 at 09, while in MuJoCo both proposed methods uniformly outperform random and clustering baselines for all 10 (Ivanov et al., 2024).
A different extension treats bounded personalization as online adaptation under controlled feedback. In the continuous-feedback framework, at each round 11 a user arrives in context 12, the system samples an action
13
observes scalar feedback 14, computes the policy-gradient estimate
15
updates a momentum term 16, uses an adaptive learning rate
17
and updates
18
Explicit feedback is solicited only when model uncertainty exceeds 19, enough steps have passed since the last request, and user engagement is above 20. Under standard assumptions, the regret is
21
and after a change point 22 at which user preferences become stationary, the iterates converge at rate
23
Empirically, dynamic personalization improves user satisfaction by 24–25 compared to static methods, while selective feedback prioritization can cut the full-update fraction by 26–27 and latency per update remains under 28 in the recommendation domain and under 29 for the virtual assistant (He, 14 Jan 2026).
These two lines suggest that bounded personalization can be imposed either on the deployed policy set itself or on the rate and circumstances of adaptation.
5. Auditing subgroup benefit, fairness, and explanation quality
In personalized supervised learning, bounded personalization is not only about the model class but also about what can be validated reliably. The framework compares a generic model 30 with a personalized model 31, where 32 is a vector of 33 binary personal attributes. It defines prediction cost and explanation cost via deletion-based faithfulness measures, with sufficiency
34
or 35, and comprehensiveness
36
or the corresponding probability form. The population and group benefits of personalization are
37
with analogous BoP-X quantities for explanation costs. The minimal-group benefit
38
captures worst-case subgroup gain and is negative if any group is harmed (2502.02786).
The key theoretical result is a minimax lower bound on the error probability for testing 39 versus 40 from a finite audit sample. When 41, the number of subgroups grows exponentially in the number of personal attributes, while subgroup sample counts shrink. Under categorical, Gaussian, and Laplace models for the per-individual BoP random variable, closed forms follow. Imposing 42 and approximating 43 yields
44
and
45
Numerically, even if 46 and 47, one finds 48 for classification but 49 (Gaussian) or 50 (Laplace) for regression. The paper therefore concludes that regression models can potentially utilize more personal attributes than classification models if BoP variability is low (2502.02786).
The framework also separates predictive benefit from explanatory benefit. Theorem 3.1 states that there exist distributions where two Bayes-optimal classifiers have identical 51–52 error, so BoP-P53, yet the personalized model yields strictly better sufficiency and comprehensiveness. Theorem 3.2 states that under a linear additive model, BoP-X54 implies BoP-P55. On MIMIC-III, the empirical picture is mixed: in regression, personalization improves minimal BoP-P56 and BoP-X57 but BoP-X58 for some subgroups; in classification, overall BoP-P59 yet minimal BoP-P60, and BoP-X61 for two subgroups (2502.02786).
This is a direct rebuttal to the common assumption that average accuracy gain suffices to justify personalization. In this framework, bounded personalization includes a statistical limit on what claims about subgroup benefit can be supported at all.
6. LLM alignment, adaptive reasoning, and privacy-constrained personalization
In the LLM literature, bounded personalization is often framed as alignment within policy or architectural limits. One proposal defines personalized alignment by fine-tuning a base model 62 to user-specific parameters 63 using user feedback data 64:
65
while the bounds of personalization are the policy-specified restrictions and requirements imposed at three tiers: Tier 1 immutable restrictions set at the national or supra-national level, Tier 2 optional restrictions and requirements set by the application provider, and Tier 3 tailored requirements specified by the end-user. Formally, personalization is a constrained optimization problem over nested sets 66, and the output space must exclude proscribed behaviors 67 while satisfying required properties 68. The same work provides a risk taxonomy with individual-level benefits such as Efficiency, Utility, Autonomy, and Empathy/Companionship; individual-level risks such as Effort, Addiction/Over-reliance, Homogenization & Bias Reinforcement, Essentialism & Profiling, Anthropomorphism, and Privacy; and societal-level benefits and risks including Inclusion & Accessibility, Diversity & Representation, Democratization & Participation, Access Disparities, Polarization, Malicious Use, Labor Displacement, and Environmental Harms (Kirk et al., 2023).
A more model-internal solution is PersonaDual, which supports two reasoning modes for a query 69 and persona 70: general-purpose mode 71 and personalized mode 72. Mode selection is governed by
73
and generation proceeds with a learned control prefix:
74
After supervised fine-tuning on mixed-mode data, DualGRPO updates the selector and prefix embeddings using rewards based on objective accuracy in general mode and preference match in personalized mode. The resulting system is reported as near interference-free: under unaligned personas, objective average accuracy is 75, only 76 points below the no-persona upper bound 77; under aligned personas, objective average is 78, a 79 improvement over 80; and on personalization tasks PersonaDual achieves 81 accuracy, the best among the listed baselines. Ablations show that removing the Dual-mode advantage decomposition drops objective/aligned performance by 82 points and personalization by 83 points (Liu et al., 13 Jan 2026).
Privacy-constrained personalization appears explicitly in EGPF, which models the mapping from hidden physician type 84 to engagement action 85 as a noisy communication channel. With distortion
86
the classical rate-distortion function is
87
or equivalently
88
The Rate-Distortion Equilibrium criterion selects an equilibrium 89 such that further improving relevance would violate a hard privacy budget. Operationally, the framework enforces 90 or adds a soft penalty 91, tracks 92 in the loop, and clips or regularizes the LLM prompt so that the effective channel capacity per interaction never exceeds the chosen RDE point. The same framework gives a Bayesian-game formulation of physician engagement, proves belief convergence at
93
and establishes regret
94
In experiments on SynthRx and HCPilot, EGPF-Full improves AUC from 95 and 96, and content relevance from 97 to 98 (Mishra, 8 Apr 2026).
These LLM-oriented frameworks differ substantially in mechanism, but they converge on the same principle: user-specific adaptation is permitted only within explicit bounds on behavior, interference, or information flow.
7. User-governed and anti-over-personalization architectures
A further shift relocates the locus of control from the platform to the user. In user-governed personalization, the agent implements
99
where 00 is the user’s collection of cross-platform data exports. The system is bounded by three families of constraints: all raw 01 remains on the user’s own device and the agent operates on de-identified data 02; legal rules such as GDPR Article 20, DMA Article 5(2), and CPRA cross-context opt-out imply that 03 is user export only, with no automated server-side data pooling; and the personalization function may not condition on any external dataset, so 04 may not use 05. The proposed architecture is ingestion and de-identification, a RAG index over 06, LLM reasoning with user goals plus retrieved memory, and tool invocation or action execution. In proof-of-concept studies with 07 participants, Amazon future-purchase prediction improves from Hit@5 08 to 09, NDCG@5 10 to 11, and Recall@5 12 to 13, all with 14; in YouTube recommendation, overall “would you watch this?” rises from 15 to 16, with exploration improving from 17 to 18 (Lin et al., 10 May 2026).
Anti-over-personalization can also be imposed by symbolic adaptation of user-side knowledge structures. In the PKG framework, each user is represented by a Personalized Knowledge Graph
19
with user-specific edge weights 20. Over-personalization is detected through feature-pair co-occurrence patterns. For a requested feature 21 and a secondary attribute 22, the bias score is
23
with 24. If 25, the pair is treated as a Personalized Information Environment. The framework then applies one of three symbolic operators to a fraction 26 of PIE-aligned triples: soft reweighting, hard inversion, or targeted triple removal. Adaptation strength is tuned online to minimize residual bias
27
subject to a relevance constraint
28
On a recipe recommendation benchmark, soft adaptation with personalized tuning achieves the highest Out-PIE rate, 29, compared with 30 for soft global tuning and 31 for naive prompt-based steering, while also reducing invalid responses relative to naive prompting (Spadea et al., 8 Sep 2025).
These user-side frameworks sharpen an important distinction. Cross-platform scope or diversity-oriented adaptation does not remove the need for bounds; it relocates them. In the user-governed setting, the hard boundary is local, consented, de-identified data only. In the PKG setting, the hard boundary is relevance-preserving suppression of co-occurrence patterns that reinforce filter bubbles. Together they suggest that bounded personalization is compatible with stronger user control, but not with unconstrained inference over arbitrary personal data.