Research
A Method for Learning Value Systems in Generative AI
Overview Research area: AI safety and ethics, specifically value alignment and value learning for generative AI (large language models). Technical level: Advanced. The paper uses formal preference-rel
- arXiv
- 2607.16903
- Published
- 2026-07-18
- Authors
- Andrés Holgado-Sánchez, Holger Billhardt, Sascha Ossowski
AI summary
Overview
- Research area: AI safety and ethics, specifically value alignment and value learning for generative AI (large language models).
- Technical level: Advanced. The paper uses formal preference-relation notation, constrained optimization, Lagrangian duality, and Bradley-Terry reward modelling.
- Scope in one sentence: The paper adapts a previously validated value system learning method to generative AI so that a multi-objective reward model (a "grounding") and an interpretable weighted linear value system are learned together from pairwise prompt-response preference data.
What This Paper Is About
Current alignment methods such as Reinforcement Learning from Human Feedback (RLHF) typically learn one reward model that treats alignment as a single, undifferentiated score, which cannot represent the pluralistic nature of human values or the differing value-based preferences of different agents. The paper addresses the lack of grounded value learning methods in generative AI by learning, from pairwise prompt-response preference data, both a grounding for a set of values (implemented as a multi-objective reward model) and a value system representation (a weighted linear scalarization over that grounding). The goal is an interpretable value system approximation that a generative AI application can reason about explicitly in terms of identifiable values, rather than an opaque or latent preference representation.
Key Contributions
- Adapts a value system learning method to generative AI. The authors transfer a previously validated value system learning approach (from Holgado-Sánchez et al.) into the generative AI setting, representing a grounding as a multi-objective reward model and a value system as a weighted linear scalarization of that grounding.
- Defines a formal value system learning problem with a discordance measure. The paper formalizes value alignment as weak orders over generations, a grounding as a set of such weak orders, and a value system as a weak order over generations induced by weights on the unit (m-1)-simplex. Preference differences are measured by a "discordance" quantity: the proportion of ordered generation pairs ranked differently by two preference relations.
- Proposes a nested, dynamically prioritized optimization algorithm. Instead of first fitting the grounding and then fitting value system weights, the method treats value system learning as a constrained problem in which grounding discordance losses must reach per-value targets, solved approximately through a Lagrangian min-max formulation with a modified gradient descent-ascent procedure.
- Evaluates against baselines and a contemporary method. The method is tested on the UltraFeedback dataset and the text-to-text task in PKU-Align-Anything, against two baselines and the Armo-RM method, which the authors identify as the most architecturally similar competitive reward model in the literature.
Main Findings
- Competitive performance with minimal trade-offs: The abstract reports that results show competitive performance and minimal trade-offs against the baselines, while improving explainability.
- Explainability is the distinctive gain: The learned value system is a transparent weighted combination of identifiable values, in contrast to latent or opaque value system representations found in related work. This lets an agent reason explicitly about the values and how they combine.
- Grounding must be learned first: The algorithm dynamically prioritizes the grounding learning process over the value system learning process, because multiple grounding functions can achieve low discordance while only a subset of them can be effectively combined linearly to approximate a value system.
- Careful loss-target tracking: Per-value grounding loss targets are not fixed in advance; they are estimated during training using an "exponentially weighted minimum" of observed losses, with coefficient η in (0,1) close to 1.
- Caution about heterogeneous datasets: If a model is learned from data aggregating annotators with divergent value systems, the resulting value system reward (W · R) should not be used as a stand-alone objective in RLHF fine-tuning, since it would likely bias the generative model toward majority opinions. The authors instead recommend using the learned grounding function for multi-objective fine-tuning.
- Specific evaluation numbers are not reported in the available content: The evaluation section of the supplied content is truncated at the description of methods, so per-dataset scores, dataset sizes, the identities of the two baselines, and the exact generative models used are not available. No figures for discordance, accuracy, or win rates are given in the provided text.
Methodology in Plain English
The researchers begin from an existing framing: a generative model produces a response given a prompt, and the "generation" is the prompt-response pair. They assume the data contains pairs of generations for the same prompt, annotated three ways: which generation is better according to a specific value (for each of the m values), and which generation is better according to an agent's overall value system. Labels are restricted to 0, 0.5, or 1, meaning the first is preferred, the second is preferred, or the two are indifferent.
Learning proceeds with neural networks. One network, the reward vector, outputs a score for each value; another set of parameters produces the value system weights via a softmax, so the weights stay on the probability simplex (non-negative and summing to one). Preferences are modelled with the Bradley-Terry formulation: the sigmoid of the difference in scores between two generations approximates the probability that one is preferred. Parameters are fit by minimizing a binary cross-entropy loss, augmented with a centering term (with hyperparameter r set to 0.01) that keeps reward magnitudes small and comparable across values.
To make sure the value system rests on a coherent grounding, the authors write the problem as a constrained optimization: minimize value system discordance subject to each per-value grounding loss being at or below an estimated target. They take the Lagrangian, adding one multiplier per value plus a value system multiplier, and approximately solve the resulting min-max problem with a modified gradient descent-ascent loop. Each iteration does three things: a gradient descent step on the model parameters, a gradient ascent step on the multiplier parameters, and a periodic update of the per-value loss targets using an exponentially weighted minimum. Multiplier normalization keeps step sizes stable, a user-defined threshold λ0 > 0 prevents multipliers from vanishing, and L2 regularization (with coefficients γθ, γω, γλ) is added for theoretical reasons. When gradients of the grounding multipliers vanish, regularization progressively raises the relative priority of reducing value system discordance.
Why This Matters
- Impact on research: The work reframes alignment as a multi-objective problem with two separable learned objects — a grounding and a value system — and supplies a formal problem statement with a discordance metric. It also argues that interpretability, not just preference replication, should be a design goal for value learning in generative AI.
- Real-world applications:
- Content moderation and safety tuning, where separate value dimensions (for example helpfulness and harmlessness/safety) must be traded off rather than collapsed into one score.
- Personalizing assistants, where users' value-based preferences are inferred from their choices instead of being asked for directly as weights or constraints.
- Multi-stakeholder policy settings, where organizations need to inspect how much weight each value receives and explore nearby alternative weightings.
- Auditing and compliance, since the value system weights provide an inspectable record of the relative importance assigned to each value.
- Industry relevance: Because the method learns from pairwise prompt-response preference data that already exists in alignment pipelines, it fits the data formats used by RLHF-style workflows. The learned grounding is presented as the component suitable for multi-objective fine-tuning when the underlying data mixes divergent annotators.
Future Directions
- Fine-tuning with the learned rewards: The paper explicitly leaves out the fine-tuning of policies using these reward models and points to existing methods such as RLHF as the intended next step; connecting the learned grounding to generation-time control is unresolved here.
- Heterogeneous user populations: The method currently aggregates potentially divergent value systems into one abstract agent's representation, and the authors acknowledge limits on representativeness, particularly for datasets with heterogeneous agents. Learning per-user value systems is an open question.
- Exploring nearby value systems: The authors propose that the learned value system can act as the majority representation around which neighbouring value systems are explored, but the mechanics of that exploration are not developed.
- Beyond linear scalarization: The value system representation is a linear scalarization, chosen for interpretability, and is described as a mere approximation of true value systems that may be more complex and context-dependent; richer but still interpretable representations remain open.
Target Audience
Researchers working on AI alignment, RLHF, and multi-objective reinforcement learning, particularly those interested in value learning and explainability; practitioners building preference-based tuning pipelines for LLMs who need reward models decomposed by value; and AI ethics, governance, and policy specialists who need inspectable representations of how different values are weighted in an AI system. Beginners will find the formal sections on weak orders, simplex constraints, and Lagrangian duality demanding, but the motivation and problem framing are accessible.
Authors’ abstract
Value-aware AI systems require explicit computational representations of human values (groundings) and their aggregation into value systems in order to align their decisions with ours. As such representations are difficult to elicit, value learning seeks to infer them by observing human behaviour. This work addresses the lack of grounded value learning methods in generative AI: existing approaches typically replicate human preferences without awareness of the multidimensional structure of value alignment, or lack principled value system elicitation methods. To address these gaps, we adapt a previously validated value system learning method to the generative AI setting, which, based on pairwise prompt-response preference data, simultaneously learns: i) an implementation of a grounding for a set of values given by a multi-objective reward model, and ii) a value system representation in the form of a weighted linear scalarization of the previous grounding model. To ensure that the learned value systems are based on coherent value representations, our algorithm dynamically prioritizes the grounding learning process. We evaluate the method against baselines and a contemporary method on prompt-response preference datasets. Results show competitive performance and minimal trade-offs against the baselines, while improving explainability.