Value Vectors Overview
- Value vectors are mathematical constructs that aggregate correlated scalar quantities into a single vector, serving diverse roles in neural networks, transformers, and decision-making processes.
- They distinguish content-bearing elements from selector weights, influencing outputs via mechanisms like attention aggregation and key–value memory in MLPs.
- In planning, risk analysis, and signal processing, value vectors underpin value function representation, transport geometry, and multivariate risk measures, showcasing versatile applications.
“Value vectors” is a polysemous technical term whose meaning depends strongly on the mathematical and architectural context. In the cited literature, it denotes: the fundamental vector-space-valued data units processed by vector-valued neural networks; the payload vectors propagated by transformer attention; the fixed columns of MLP down-projection matrices in transformer feedforward blocks; the -vectors that represent piecewise-linear-convex value functions in POMDPs; and vector-valued objects in signal processing, optimal transport, dual-quaternion analysis, and multivariate risk theory (Valle, 2023, He et al., 1 Jun 2026, You et al., 11 Nov 2025, Liu et al., 22 Sep 2025, Sangwine, 2014, Chen et al., 2016, Qi et al., 2021, Merakli et al., 2017). Across these usages, the common thread is that a single mathematical object aggregates multiple correlated scalar quantities and is manipulated as one entity rather than as independent channels or coordinates.
1. Terminological scope and principal meanings
The term has no single universal definition. In vector-valued neural networks, a value vector is an element of a finite-dimensional real vector space equipped with a multiplication, written
with coordinates in under an isomorphism (Valle, 2023). In this setting, a group of correlated channels is treated as one algebraic object rather than as separate scalars.
In transformer attention, value vectors are the vectors collected and averaged by the attention weights. For a standard block with residual stream , queries, keys, and values are
and each head outputs
Here the values are the payload written back into the residual stream (He et al., 1 Jun 2026). In approximate-attention work, these same value vectors are the objects whose aggregation should be approximated directly, rather than approximating only the attention weights (Gupta et al., 2021).
In transformer MLPs, the term denotes something different. For GLU-style feedforward blocks,
which can be rewritten as
with
0
Thus each column of 1 is a fixed value vector in an MLP key–value memory interpretation (Liu et al., 22 Sep 2025).
In POMDP planning, a value vector is an 2-vector, namely an element of 3 whose inner product with a belief 4 gives the value of a conditional plan,
5
These vectors furnish the piecewise-linear-convex representation of finite-horizon POMDP value functions (You et al., 11 Nov 2025).
A concise comparison is useful.
| Area | “Value vector” denotes | Core role |
|---|---|---|
| Vector-valued NNs | Element of 6 | Jointly encodes correlated channels |
| Transformer attention | Row/value in 7 | Payload aggregated by attention |
| Transformer MLPs | Column of 8 | Fixed memory content weighted by key activations |
| POMDPs | 9-vector in 0 | Hyperplane defining value over beliefs |
| Signal/OT/risk settings | Vector-valued sample, density, or risk point | Multi-component state treated as one object |
A common misconception is that these usages are interchangeable. They are not. The attention value vector, the MLP value vector, and the POMDP 1-vector occupy different spaces, are produced by different mechanisms, and serve different analytical purposes (He et al., 1 Jun 2026, Liu et al., 22 Sep 2025, You et al., 11 Nov 2025).
2. Value vectors as algebraic feature units in vector-valued neural networks
In the framework of vector-valued neural networks, “value vectors” are the fundamental data units processed by V-nets. Instead of treating channels independently, the network treats tuples of channels as elements of a vector space 2 endowed with multiplication (Valle, 2023). A vector-valued signal is therefore an array whose entries are vectors in 3, and a value vector encodes “a small group of correlated scalar channels” processed as a single algebraic object (Valle, 2023).
The algebra structure is specified by a multiplication table
4
so that for
5
their product becomes
6
with bilinear forms determined by the coefficients 7 (Valle, 2023). This means that inter-channel coupling is built into the multiplication itself rather than left entirely to unconstrained learned weights.
A vector-valued dense layer takes 8 and computes
9
with vector-valued weights and biases (Valle, 2023). Convolution is defined analogously:
0
The multiplication 1 mixes the channels inside each value vector in a structured way (Valle, 2023).
A central claim of the framework is parameter efficiency. A dense V-net layer with input dimension 2 value vectors and output dimension 3 value vectors uses 4 weight parameters plus 5 biases, whereas the unconstrained real layer on the same effective dimensions uses 6 weights plus 7 biases, yielding a factor-of-8 reduction in the weights when 9 (Valle, 2023). The paper further states that V-nets “usually have fewer parameters and often undergo more robust training than traditional neural networks,” while a universal approximation theorem is given for V-MLPs under a non-degeneracy assumption and split activations (Valle, 2023).
The same framework subsumes hypercomplex-valued neural networks. A hypercomplex-valued neural network is treated as a V-net in which 0 is a hypercomplex algebra with identity, so quaternions, complex numbers, Clifford algebras, and parametrized “hypercomplex” constructions become special cases (Valle, 2023). The paper also shows that V-nets can be implemented in TensorFlow or PyTorch as real-valued networks by constraining real weight matrices to Kronecker-structured forms such as
1
This makes the value-vector interpretation architectural rather than software-dependent (Valle, 2023).
3. Value vectors in transformers: attention payloads, approximation targets, and context-free banks
In attention mechanisms, value vectors are the vectors that are actually aggregated once the query–key similarities have been computed. For a single query, the output is
2
so the attention weights determine how to mix the value vectors, but the output itself lives in value space (Gupta et al., 2021).
This distinction is the basis of the paper on value-aware approximate attention. That work argues that many efficient-attention methods are “value-oblivious” because they optimize approximation of the attention distribution or kernel matrix while ignoring the contribution of 3 to the final output (Gupta et al., 2021). It defines a value-aware objective over the set
4
and seeks
5
A key theoretical point is that by Carathéodory’s theorem, if 6 for 7-dimensional values, then zero approximation error is possible because 8 lies in the convex hull of the value vectors (Gupta et al., 2021). The paper further shows that ignoring values can be arbitrarily bad in the 9 regime, and that the effect is especially pronounced for less skewed kernels such as low-degree polynomial or ELU kernels (Gupta et al., 2021).
A separate line of work asks whether deep-layer value vectors need to depend on context at all. Standard attention computes 0 from the current residual stream, but systematic ablations on 135M and 780M models show that in the last third of layers, replacing these context-dependent values with context-free token-specific vectors improves validation loss over standard attention and, at 780M, improves the average score across 21 benchmarks (He et al., 1 Jun 2026). The resulting Bank of Values (BoV) stores a learned lookup table
1
and for token id 2 uses
3
Keys and queries remain standard; only the value path is replaced in the last third of layers (He et al., 1 Jun 2026).
The reported quantitative findings are specific. On the 12-layer 135M model, baseline validation loss is 0.854 BPB, while the best context-free variants in the last four layers reach as low as 0.845 BPB (He et al., 1 Jun 2026). On the 24-layer 780M model, BoV achieves validation loss 4 versus 0.722 for baseline, and CORE benchmark score 5 versus 0.260 (He et al., 1 Jun 2026). The method also changes the compute–memory tradeoff: value computation becomes a gather rather than a dense matrix multiplication, and value caches for the BoV layers can be eliminated because values can be looked up from token ids (He et al., 1 Jun 2026).
A plausible implication is that the value path in deep transformer layers can function more as a token-identity-preserving channel than as a context-dependent feature synthesizer. The paper itself states the empirical result more cautiously: once deep layers have access to a good context-free value vector, “adding back the context-dependent component provides little additional benefit for aggregate benchmark performance” (He et al., 1 Jun 2026).
4. Value vectors in transformer MLPs and training-free truthfulness detection
Transformer MLPs introduce another, more parameter-centric notion of value vectors. Under the GLU decomposition
6
the vectors 7 are fixed columns of the down-projection matrix, while the coefficients 8 are input-dependent scalar key activations (Liu et al., 22 Sep 2025). This realizes the MLP as a key–value memory in which the hidden-state update is a weighted sum of stored value vectors.
The truth-detection method TruthV exploits this structure. For a multiple-choice question with candidate answers 9, the model is run on each sequence 0, and for each MLP unit 1 the final-token key activations 2 are recorded (Liu et al., 22 Sep 2025). A single value vector then becomes a weak predictor under either an argmax rule,
3
or an argmin rule,
4
Its accuracy on a labeled selection set is
5
and the top-ranked value vectors are ensembled by majority vote (Liu et al., 22 Sep 2025).
The key empirical finding is that a small subset of MLP value vectors exhibits truthfulness-related statistical patterns. Most units are near random, but some are substantially predictive under argmax and others under argmin; these patterns are complementary, and combining them slightly improves performance (Liu et al., 22 Sep 2025). The method is training-free in the sense that it does not fit a probe: it only ranks existing units by simple accuracy statistics computed from a small labeled set (Liu et al., 22 Sep 2025).
On the NoVo benchmark, TruthV substantially exceeds both the log-likelihood baseline and the earlier attention-based NoVo method. For Gemma-2-2B-it, average accuracy is 49.25% for log-likelihood, 61.67% for NoVo, 70.33% for TruthV(argmax), and 70.25% for TruthV(argmin). For Qwen3-4B, the corresponding averages are 40.98%, 63.26%, 70.28%, and 69.78% (Liu et al., 22 Sep 2025). The top truthfulness-related value vectors are concentrated in middle and late layers, while early layers contribute virtually none (Liu et al., 22 Sep 2025).
The paper also emphasizes an important limitation of simplistic interpretations. The distributions of key activations for true and false candidates overlap substantially, so there is no global threshold separating truthful from untruthful answers. What matters is a question-conditioned relative pattern across candidates (Liu et al., 22 Sep 2025). This suggests that these value vectors do not encode “truth” as an isolated scalar marker. Rather, they participate in comparative internal computations that are useful for selecting the correct answer.
5. Value vectors in planning, control, and risk: 6-vectors, dual-quaternion vectors, and vector-valued CVaR
In POMDP theory, the canonical value vectors are the 7-vectors used to represent a finite-horizon value function over beliefs:
8
Each 9 defines a hyperplane over belief space and corresponds to a conditional plan or a node in a finite-state controller (You et al., 11 Nov 2025). Classical point-based value iteration performs Bellman backups directly on these value vectors, but their 0-dimensional representation becomes intractable in large state spaces. Neural Value Iteration reinterprets an 1-vector as a function 2 and replaces each tabular vector with a neural network 3, maintaining the max-over-elements structure
4
inside a finite network controller (You et al., 11 Nov 2025). The paper reports that on RockSample5 with more than 6 states, NVI achieves 7 return, whereas MCVI gets 8 and SARSOP is inapplicable (You et al., 11 Nov 2025).
In dual-quaternion analysis, the relevant objects are dual quaternion vectors
9
whose norms take values in the dual numbers 0 rather than in 1 (Qi et al., 2021). The paper defines 1-, 2-, and 2-norms on 3:
4
and a case-dependent 5 that is well-defined both when some components are appreciable and when all are infinitesimal (Qi et al., 2021). In this literature, the phrase “value vectors” refers to vectors whose norm is a dual-number-valued quantity capturing both standard and infinitesimal magnitude (Qi et al., 2021). That usage is not architectural but geometric.
In multivariate risk theory, “value vectors” appear as elements of the set-valued multivariate Conditional Value-at-Risk. For a discrete random loss vector 6, one first defines the multivariate VaR set 7 via 8-level efficient points, then constructs
9
and finally retains only the non-dominated vectors:
0
Each element of 1 is a risk vector whose coordinates are dimensionwise tail-risk quantities, and smaller vectors are preferred under componentwise Pareto order (Merakli et al., 2017). The paper proves normalization, positive homogeneity, translation equivariance, and a monotonicity property for this set-valued measure, while also showing that a natural subadditivity analogue fails (Merakli et al., 2017).
These examples illustrate that in planning and decision theory, value vectors usually denote either value-function representatives or multi-criteria risk representatives. They need not be “vectors of activations,” and they need not arise inside neural architectures.
6. Value vectors in signal geometry, transport, and nonlinear variational analysis
In signal processing, a vector-valued signal is a function whose samples are vectors in 2:
3
A central result is that any sum of same-frequency vector sinusoids,
4
can be written as
5
and therefore traces an ellipse confined to the plane spanned by 6 and 7 (Sangwine, 2014). The paper further shows that one can compute orthogonal major and minor axis vectors 8 and 9 algebraically, with
00
where 01 is guaranteed to be the major axis (Sangwine, 2014). Here the “value vectors” are simply the signal values at each sample, but harmonic analysis shows that their single-frequency motion is always planar and elliptic.
In optimal transport, vector-valued distributions are maps 02 that assign a nonnegative vector to each point in space or each graph node (Chen et al., 2016). Vector-Valued Optimal Mass Transport allows mass both to move across space and to transfer between vector components. In continuous space the dynamic formulation introduces a vector-valued density 03, spatial momentum 04, and inter-component momenta 05, with continuity equation
06
and convex cost
07
(Chen et al., 2016). In this setting, a value vector is the multi-channel local state itself; transport geometry is defined jointly over spatial location and component type.
A more abstract usage appears in nonlinear variational regularization. There, the relevant objects are generalized singular vectors of a convex regularizer 08 relative to a forward operator 09, defined by the subdifferential inclusion
10
The ground state is the minimizer of 11 under 12 and orthogonality to 13, and for one-homogeneous 14 the singular value equals 15 (Benning et al., 2012). The paper explicitly interprets these generalized singular vectors as nonlinear analogues of linear singular vectors, that is, as canonical “value vectors” for multiscale analysis and reconstruction under variational regularization (Benning et al., 2012). This sense is conceptually related to eigendirections rather than to channel groupings or attention payloads.
7. Unifying themes and recurring distinctions
Despite the terminological diversity, several unifying themes recur. First, value vectors typically replace independent scalar treatment by joint structure. In V-nets they encode correlated channels as one algebraic unit (Valle, 2023). In transformer attention they are the joint payload whose geometry determines the actual attention output (Gupta et al., 2021). In BoV they become token-specific lookup vectors in deep layers (He et al., 1 Jun 2026). In MLP memory interpretations they are fixed basis directions summed with context-dependent coefficients (Liu et al., 22 Sep 2025). In POMDPs they summarize conditional-plan value over the hidden state space (You et al., 11 Nov 2025). In transport and risk they encode multi-component local state or multi-criteria tail exposure (Chen et al., 2016, Merakli et al., 2017).
Second, many papers distinguish between vector values as representations and scalar weights as selectors. Attention separates weights 16 from values 17 (Gupta et al., 2021). GLU MLPs separate key activations 18 from value vectors 19 (Liu et al., 22 Sep 2025). POMDPs separate belief coordinates from 20-vectors that define hyperplanes over them (You et al., 11 Nov 2025). This suggests a common architectural pattern: value vectors often carry content, while another mechanism determines how much of each vector is used.
Third, parameterization and implementation matter. V-nets can be emulated by constrained real-valued networks (Valle, 2023). BoV stores deep-layer value vectors as sparse parameters, avoiding recomputation and persistent caching (He et al., 1 Jun 2026). Neural Value Iteration replaces explicit tabular value vectors by neural approximators (You et al., 11 Nov 2025). These are different instances of the same broader move: shifting from unconstrained or tabular representations to structured vector parameterizations.
A final distinction is terminological rather than mathematical. In some literatures, “value vector” refers to an object that itself is a vector-valued datum or parameter; in others, it refers to a vector that represents a value function or risk value. Confusing these categories can obscure rather than clarify. The attention value vector is not a value-function vector; the POMDP 21-vector is not an activation payload; the dual-quaternion “value vector” is not a transformer parameter (He et al., 1 Jun 2026, You et al., 11 Nov 2025, Qi et al., 2021).
Taken together, the cited work shows that “value vectors” are best understood not as a single standard object, but as a family of vectorial constructs that serve as content-bearing units, structured state descriptors, or value-representing elements in their respective theories. This suggests that the durability of the term comes from a shared mathematical intuition: once multiple correlated quantities must be preserved, transformed, transported, or compared jointly, the relevant object is often no longer a scalar value but a vector-valued one.