REVIEW 4 major objections 5 minor 46 references
Joint Learning of Energy-based Models and their Partition Function
T0 review · 4 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read The paper's central claim is that a probabilistic energy-based model and its log-partition can be learned jointly by an unbiased, MCMC-free stochastic gradient scheme that provably recovers maximum likelihood in function space and…
desk verdict A clean min-min surrogate for EBM MLE with a solid theoretical core, but the experimental claims rest on a shared neural tau outside the proven guarantees. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the min-min objective in equations (12)-(13), in which the log-partition is promoted from a quantity to be computed into an optimization variable $\tau\in\mathcal{F}(\mathcal{X})$. The derivation rests on a convex-conjugate identity: $\Omega^*_1(h)=\min_{\tau\in\mathbb{R}}\tau+\Omega^*_+(h-\tau)$, which replaces the intractable normalization over $\mathcal{Y}$ with a one-dimensional minimization against the conjugate of the regularizer. In the MLE case this becomes $\mathcal{L}_{g,\tau}(x)=\tau(x)+\mathbb{E}_{y'\sim q(\cdot|x)}[\exp(g(x,y')-\tau(x))-1]$, giving the doubly stochastic estimator: sample $(x,y)$ from the data, sample $y'$ from the reference measure $q$, and update both networks with unbiased gradients. The second network for $\tau$ is what allows the log-partition to be evaluated on unseen inputs.
What would settle it
On a dataset whose true log-partition is computable in closed form, train with a capacity-limited $\tau$ network and send the number of reference samples $B'\to\infty$; if at the optimizer the held-out gap $\tau_v(x)-\mathrm{LSE}_{g_w}(x)$ does not shrink toward zero, or if the achieved logistic loss stays strictly above the MLE optimum, then the parameter-space objective has not reproduced the function-space equivalence.
Extended reading notes
Core claim
On continuous functions, the paper's central result is that the MLE objective $\mathcal{L}_{\mathrm{MLE}}(g)$ and the joint min-min objective $\mathcal{L}_{\mathrm{MLE}}(g,\tau)$ share the same minimum over $g$, with the optimal $\tau^\star(x)$ equal to the log-sum-exp $\mathrm{LSE}_{g^\star}(x)$ and the implied conditional distribution equal to $q(y|x)\exp(g^\star(x,y)-\tau^\star(x))$. The new loss treats $\tau$ as a Lagrange multiplier for the normalization constraint $\sum_{y\in\mathcal{Y}} p_g(y|x)=1$ and reads $\mathcal{L}_{g,\tau}(x)=\tau(x)+\sum_{y'\in\mathcal{Y}} q(y'|x)(\exp(g(x,y')-\tau(x))-1)$. Since this is an expectation against the reference measure $q$, gradients are unbiased whenever one can sample from $q$, removing the need for MCMC. In the finite-sum setting, giving each training example a free per-example value $v_i$ recovers exact MLE even for models nonlinear in the parameters, and with linear couplings the objective is jointly convex in $(w,v)$. The same min-min equivalence is proved for the wider family of Fenchel-Young losses obtained by replacing the KL term with an $f$-divergence, which includes the sparsemax loss.
Load-bearing premise
The practical version assumes that a neural-network log-partition trained in parameter space lands close to the function-space optimum, because the exact maximum-likelihood equivalence is proved only for arbitrary continuous functions or for free per-example values, not for the neural-network parameterization used in the experiments.
Editorial extensions
If this is right
- Probabilistic EBMs over sets and permutations become trainable by plain SGD with unbiased gradients, bypassing MCMC samplers and the #P-complete partition sum that makes exact MLE intractable.
- The learned log-partition network yields a normalization-constant estimate on unseen inputs, which earlier methods that compute or treat the partition as a scalar did not provide.
- The method gives the first tractable way to optimize the sparsemax loss on general combinatorially large output spaces, where prior approaches required a $k$-best oracle that may not exist.
- For linear energy models with per-example log-partition values, the training objective is jointly convex, so SGD converges at the standard rates for convex objectives.
- Using fewer reference samples acts as a regularizer and can improve test scores over exact MLE, an effect the paper documents on several datasets.
Reading between the lines
- The paper leaves implicit that the learned $\tau$ network could double as a proposal distribution for importance sampling or rejection sampling from $p_g(\cdot|x)$, turning the learned log-partition into a sampler accelerator; this would be a direct test of whether the approximation quality transfers to generative uses.
- The observed regularization effect of small $B'$ suggests treating the reference-sample count as a bias-variance dial rather than an accuracy knob; a systematic study could map how the generalization gain varies with dataset size and output-space cardinality.
- Because the stochastic gradient is unbiased only when $\tau$ equals the true log-partition, monitoring the gap $\tau_v(x)-\mathrm{LSE}_{g_w}(x)$ on a validation set during training could serve as a diagnostic for when the min-min objective silently stops approximating MLE.
- The Fenchel-Young generalization hints that other $f$-divergence regularizers beyond chi-square, such as Tsallis entropies, could be trained by the same doubly stochastic scheme whenever their conjugate is easy to evaluate.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a method for learning conditional energy-based models p(y|x) ∝ q(y|x) exp(g(x,y)) over combinatorially large discrete spaces by jointly minimizing an energy function g and a log-partition function τ. The key objective is the min-min problem (12)-(13), which is optimized with a doubly stochastic SGD scheme (Algorithm 1) that samples outputs from a reference distribution q and never runs MCMC. The paper proves that in the space of continuous functions the min-min objective equals the MLE objective with τ*(x) = LSE_{g*}(x) (Proposition 1), that in the finite-sum setting with free per-example values τv(xi)=vi the empirical MLE is recovered exactly (Proposition 2), and that the construction extends to Fenchel-Young losses based on f-divergences, including sparsemax (Proposition 4). Experiments on multilabel classification and label ranking report improvements over MCMC and min-max baselines and show visual agreement between a learned neural τ and the closed-form log-partition on a unary model.
Significance. The variational proofs in Appendices C.2-C.5 are careful and the core identity is correct: minimizing (13) over τ yields the first-order condition that pins τ to the log-sum-exp, and the doubly stochastic estimator is unbiased under sampling from q. The finite-sum result with per-example τ is exact even for nonlinear g_w, and joint convexity for linear g with per-example τ gives concrete convergence rates. The sparsemax extension is a genuine contribution. The caveat is that the advertised 'MLE without MCMC' claim is proven only in function space or for per-example τ, while several headline experiments and the generalization claim about the learned log-partition use a shared neural-network τ that falls outside both guarantees. The paper explicitly acknowledges the approximation ('thanks to the universality of neural networks... should be close') but provides no bound and no quantitative measurement of the gap in the settings where τ is needed. If this gap can be closed, or the claims appropriately scoped, the paper would be a solid contribution; in its current form the central claim overreaches the theorem coverage.
major comments (4)
- [Section 3.1 (Propositions 1 and 2) and Section 4.2 (Table 2)] Proposition 1 is a function-space statement, and Proposition 2 covers only the finite-sum setting with free per-example values τv(xi)=vi. The label-ranking experiments in Table 2 and the generalization experiment in Figure 2 use a shared MLP (or ResNet/ICNN) τ network, which is covered by neither theorem. The statement in Section 3.1 that 'thanks to the universality of neural networks, minimization in the space of parameters should be close to minimization in the space of continuous functions' is an unquantified heuristic. This gap is load-bearing: in the objective (12)-(13), whenever τv(x) differs from LSE_gw(x), the gradient with respect to g is no longer the gradient of the MLE objective, so SGD can reduce the surrogate by exploiting τ's misspecification rather than by improving the energy model. To support the central claim, I would ask for either (a) a restriction of the headline claims to per-example τ, which is already exact for finite-sum MLE and is what Table 1 uses, with neural τ presented as an amortized heuristic validated explicitly; or (b) a quantitative analysis of the surrogate gap, e.g., a bound on the excess risk in terms of sup_x |τv(x) - LSE_g(x)|, together with a measurement of this quantity on held-out data and, for label ranking, a comparison against the per-example τ control.
- [Section 4.1 (Figure 2)] The claim that the learned log-partition 'generalizes to unseen data points' is supported only by a visual comparison on the unary model, where the true log-partition has the closed form (17). This testbed is the one setting where τ is actually unnecessary, since LSE_g is tractable. The more relevant settings are the pairwise multilabel model and the permutation models, where LSE is intractable, and no quantitative accuracy measure is reported there. I recommend reporting numerical errors (e.g., mean/median absolute or relative error against a closed-form LSE where available, or against a high-accuracy estimate on small instances) and extending the check, even if only on small k, to the pairwise and permutation settings.
- [Tables 1-2 and Figures 1-3] All experimental results appear to be single runs: the tables report point estimates with no standard deviations or confidence intervals, and the learning curves are single traces. Given that hyperparameters are selected on validation sets and the reported differences between methods are often a few points, it is difficult to assess whether the improvements are significant. Reporting means and standard deviations over several seeds, at least for the main tables, is necessary to support the empirical claims.
- [Section 3.2 (joint convexity paragraph)] The convergence-rate statements (O(1/√t) and O(1/t)) are proved in Appendix C.6 only for linear g_w with per-example τv(xi)=vi. The sentence 'we have obtained convergence rates for learning EBMs in arbitrary combinatorial spaces' should be qualified to this jointly convex setting; it does not cover the neural-network parameterization of g or τ used in most experiments. This is not an error in the proof, but the presentation currently invites a broader reading than the theorem supports.
minor comments (5)
- [Throughout] There are several typos: 'Bolzmann' in Section 1, 'mutiplier' in Section 3.1 and in the contributions list, and inconsistent capitalization of 'Resnet' vs 'ResNet' across Tables 1-2 and the appendix.
- [Appendix C.5] The final displayed equation writes π_{g*,q}(y|x) = q(y|x)(f_+^*)'(g*(x,y)), omitting the '- τ*(x)' that appears in the statement of Proposition 4 in the main text. The appendix should match the proposition.
- [Table 1 caption] The caption says 'with constant τ model, that is τv(xi) := vi', but v_i varies per example; calling this a 'constant' model is misleading. I suggest 'per-example τ' or 'free per-example values' instead.
- [Figure 1 caption] The caption states that the loss and gradient in plots (a) and (b) are computed using (15) even for the proposed method; this is informative but should also be stated in the main text near the discussion of convergence to exact MLE, since the plotted curves are not the training objective actually optimized.
- [Section 3.4] The claim of obtaining 'the first tractable method for optimizing the sparsemax loss in combinatorially-large spaces' is plausible, but the comparison with prior k-best-oracle methods (Pillutla et al., 2018) is brief; a short discussion of the oracle cost and why sampling from q avoids it would help readers assess the claim.
Circularity Check
No significant circularity: the min-min equivalence is a genuine variational identity, and the learned log-partition is benchmarked against an external closed form.
full rationale
The central equivalence claims (Propositions 1, 2, and 4) are genuine variational identities, not definitions of the target in terms of the input. The objective L_{g,tau}(x) = tau(x) + E_{y'~q}[exp(g(x,y') - tau(x)) - 1] is constructed so that the inner minimization over tau recovers LSE_g(x) by first-order conditions, and the proofs in Appendix C derive this from convex-conjugate calculus (Lemmas 1 and 2) rather than assuming the conclusion. This is a standard variational representation of the log-sum-exp, and the paper proves the equality for the continuous-function and finite-sum settings. The learned tau is not fitted to the closed-form LSE and then reported as a prediction: in Figure 2, tau is trained jointly with g on training data and evaluated on held-out inputs against the analytic softplus LSE of the unary model, which is an external benchmark internal to the paper. The Fenchel-Young/sparsemax extension follows from the same duality machinery and is an original derivation, not a renaming of a known result. Self-citations (e.g., Blondel et al. 2020a/2022, Sander et al. 2023) are used for background, baselines, or standard optimization tools and are not load-bearing; no 'uniqueness theorem' from the authors is invoked to forbid alternatives or force the proposed choice. The parameterization gap between the function-space guarantee and the neural-network experiments — the unquantified appeal to 'universality of neural networks' — is a correctness/scope concern about whether approximate MLE is achieved in practice, not a circularity, since the paper explicitly states that in parameter space the approach 'only performs approximate MLE' and does not claim the parameter-space optimum equals the function-space optimum.
Assumptions & free parameters
free parameters (3)
- B' (number of reference samples y' per input) =
ranging from 1 to 100000, tuned per experiment
- learning rate and weight decay =
tuned per dataset on a validation set
- tau network architecture =
constant, MLP, ICNN, or ResNet
assumptions (4)
- standard math Variational representation of log-sum-exp and Fenchel biconjugacy (Lemmas 1 and 2)
- domain assumption Reference measure q(y|x) is fixed, strictly positive, and sampleable for every x
- domain assumption Continuity of g and q, and f strictly convex differentiable with (0,+infinity) contained in dom f'
- ad hoc to paper Neural-network parameterization of tau is close enough to the function-space solution
Cite this review
Pith. "Pith review of Joint Learning of Energy-based Models and their Partition Function." pith.science (2026). https://pith.science/paper/7ZGWKIH6
@misc{pith2026250118528,
author = {Pith},
title = {Pith review of: Joint Learning of Energy-based Models and their Partition Function},
year = {2026},
howpublished = {\url{https://pith.science/paper/7ZGWKIH6}},
note = {Machine review of arXiv:2501.18528}
}
read the original abstract
Energy-based models (EBMs) offer a flexible framework for parameterizing probability distributions using neural networks. However, learning EBMs by exact maximum likelihood estimation (MLE) is generally intractable, due to the need to compute the partition function (normalization constant). In this paper, we propose a novel formulation for approximately learning probabilistic EBMs in combinatorially-large discrete spaces, such as sets or permutations. Our key idea is to jointly learn both an energy model and its log-partition, both parameterized as a neural network. Our approach not only provides a novel tractable objective criterion to learn EBMs by stochastic gradient descent (without relying on MCMC), but also a novel means to estimate the log-partition function on unseen data points. On the theoretical side, we show that our approach recovers the optimal MLE solution when optimizing in the space of continuous functions. Furthermore, we show that our approach naturally extends to the broader family of Fenchel-Young losses, allowing us to obtain the first tractable method for optimizing the sparsemax loss in combinatorially-large spaces. We demonstrate our approach on multilabel classification and label ranking.
Figures
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
H., Hinton, G
Ackley, D. H., Hinton, G. E., and Sejnowski, T. J. A learning algorithm for Boltzmann machines. Cognitive Science, 9 0 (1): 0 147--169, 1985
1985
-
[3]
Ali, S. M. and Silvey, S. D. A general class of coefficients of divergence of one distribution from another. Journal of the Royal Statistical Society: Series B (Methodological), 28 0 (1): 0 131--142, 1966
1966
-
[4]
Amos, B., Xu, L., and Kolter, J. Z. Input convex neural networks. In Proceedings of the International Conference on Machine learning (ICML), pp.\ 146--155, 2017
work page 2017
-
[5]
Generalized Energy Based Models
Arbel, M., Zhou, L., and Gretton, A. Generalized Energy Based Models . In International Conference On Learning Representations , 2021
work page 2021
-
[6]
Learning theory from first principles
Bach, F. Learning theory from first principles. MIT press, 2024
2024
-
[7]
Blondel, M. and Roulet, V. The elements of differentiable programming. arXiv preprint arXiv:2403.14606, 2024
arXiv 2024
-
[8]
Blondel, M., Martins, A. F., and Niculae, V. Learning with Fenchel--Young losses. Journal of Machine Learning Research, 21 0 (35): 0 1--69, 2020 a
work page 2020
Show all 46 references
-
[9]
Fast differentiable sorting and ranking
Blondel, M., Teboul, O., Berthet, Q., and Djolonga, J. Fast differentiable sorting and ranking. In Proceedings of the International Conference on Machine learning (ICML), pp.\ 950--959, 2020 b
2020
-
[10]
Learning energy networks with generalized Fenchel--young losses
Blondel, M., Llinares-L \'o pez, F., Dadashi, R., Hussenot, L., and Geist, M. Learning energy networks with generalized Fenchel--young losses. Proceedings of the Conference on Neural Information Processing Systems (NeurIPS), 35: 0 12516--12528, 2022
2022
-
[11]
Bowman, V. J. Permutation polyhedra. SIAM Journal on Applied Mathematics, 22 0 (4): 0 580--589, 1972
1972
-
[12]
Convex optimization
Boyd, S. Convex optimization. Cambridge UP, 2004
2004
-
[13]
J., Leary, C., Maclaurin, D., Necula, G., Paszke, A., Vander P las, J., Wanderman- M ilne, S., and Zhang, Q
Bradbury, J., Frostig, R., Hawkins, P., Johnson, M. J., Leary, C., Maclaurin, D., Necula, G., Paszke, A., Vander P las, J., Wanderman- M ilne, S., and Zhang, Q. JAX : composable transformations of P ython+ N um P y programs, 2018. URL http://github.com/jax-ml/jax
2018
-
[14]
On information-type measure of difference of probability distributions and indirect observations
Csisz \'a r, I. On information-type measure of difference of probability distributions and indirect observations. Studia Sci. Math. Hungar., 2: 0 299--318, 1967
1967
-
[15]
and Igel, C
Fischer, A. and Igel, C. Empirical analysis of the divergence of gibbs sampling based learning algorithms for restricted boltzmann machines. In International conference on artificial neural networks, pp.\ 208--217. Springer, 2010
2010
-
[16]
and Gower, R
Garrigos, G. and Gower, R. M. Handbook of convergence theorems for (stochastic) gradient methods. arXiv preprint arXiv:2301.11235, 2023
2023 arXiv
-
[17]
and Hirayama, J.-i
Gutmann, M. and Hirayama, J.-i. Bregman divergence as general framework to estimate unnormalized statistical models. In Proceedings of the Conference on Uncertainty in Artificial Intelligence (UAI), 2011
2011
-
[18]
and Hyv \"a rinen, A
Gutmann, M. and Hyv \"a rinen, A. Noise-contrastive estimation: A new estimation principle for unnormalized statistical models. In Proceedings of the International Conference on Artificial Intelligence and Statistics (AISTATS), pp.\ 297--304, 2010
2010
-
[19]
Hinton, G. E. Training products of experts by minimizing contrastive divergence. Neural Computation, 14 0 (8): 0 1771--1800, 2002
2002
-
[20]
and Ermon, S
Ho, J. and Ermon, S. Generative adversarial imitation learning. Advances in neural information processing systems, 29, 2016
2016
-
[21]
Some extensions of score matching
Hyv \"a rinen, A. Some extensions of score matching . Computational Statistics & Data Analysis, 51 0 (5): 0 2499--2512, 2007
2007
-
[22]
and Dayan, P
Hyv \"a rinen, A. and Dayan, P. Estimation of non-normalized statistical models by score matching. Journal of Machine Learning Research, 6 0 (4), 2005
2005
-
[23]
Kingma, D. P. Adam: A method for stochastic optimization. In Proceedings of the International Conference on Learning Representations (ICLR), 2014
2014
-
[24]
and Tsitsiklis, J
Konda, V. and Tsitsiklis, J. Actor-critic algorithms. Advances in neural information processing systems, 12, 1999
1999
-
[25]
M., Filippov, A., and Burnaev, E
Korotin, A., Li, L., Genevay, A., Solomon, J. M., Filippov, A., and Burnaev, E. Do neural optimal transport solvers work? a continuous wasserstein-2 benchmark. Advances in neural information processing systems, 34: 0 14593--14605, 2021
2021
-
[26]
Kuhn, H. W. The Hungarian method for the assignment problem. Naval Research Logistics Quarterly, 2 0 (1-2): 0 83--97, 1955
1955
-
[27]
Conditional random fields: Probabilistic models for segmenting and labeling sequence data
Lafferty, J., McCallum, A., Pereira, F., et al. Conditional random fields: Probabilistic models for segmenting and labeling sequence data. In Proceedings of the International Conference on Machine learning (ICML), 2001
2001
-
[28]
A tutorial on energy-based learning
LeCun, Y., Chopra, S., Hadsell, R., Ranzato, M., Huang, F., et al. A tutorial on energy-based learning. Predicting structured data, 1 0 (0), 2006
2006
-
[29]
and Astudillo, R
Martins, A. and Astudillo, R. From softmax to sparsemax: A sparse model of attention and multi-label classification. In Proceedings of the International Conference on Machine learning (ICML), pp.\ 1614--1623, 2016
2016
-
[30]
F., Treviso, M., Farinhas, A., Aguiar, P
Martins, A. F., Treviso, M., Farinhas, A., Aguiar, P. M., Figueiredo, M. A., Blondel, M., and Niculae, V. Sparse continuous distributions and Fenchel--Young losses. Journal of Machine Learning Research, 23 0 (257): 0 1--74, 2022
2022
-
[31]
Concrete score matching: Generalized score matching for discrete data
Meng, C., Choi, K., Song, J., and Ermon, S. Concrete score matching: Generalized score matching for discrete data . In Koyejo, S., Mohamed, S., Agarwal, A., Belgrave, D., Cho, K., and Oh, A. (eds.), Advances in Neural Information Processing Systems, volume 35, pp.\ 34532--34545, 2022
2022
-
[32]
Geometric losses for distributional learning
Mensch, A., Blondel, M., and Peyr \'e , G. Geometric losses for distributional learning. In Proceedings of the International Conference on Machine learning (ICML), pp.\ 4516--4525, 2019
2019
-
[33]
f-GAN : Training generative neural samplers using variational divergence minimization
Nowozin, S., Cseke, B., and Tomioka, R. f-GAN : Training generative neural samplers using variational divergence minimization. In Proceedings of the Conference on Neural Information Processing Systems (NeurIPS), volume 29, 2016
2016
-
[34]
A family of computationally efficient and simple estimators for unnormalized statistical models
Pihlaja, M., Gutmann, M., and Hyv \"a rinen, A. A family of computationally efficient and simple estimators for unnormalized statistical models . In Proc. Conf. on Uncertainty in Artificial Intelligence (UAI) , pp.\ 442--449. AUAI Press, 2010
2010
-
[35]
K., Roulet, V., Kakade, S
Pillutla, V. K., Roulet, V., Kakade, S. M., and Harchaoui, Z. A smoother way to train structured prediction models. Proceedings of the Conference on Neural Information Processing Systems (NeurIPS), 31, 2018
2018
-
[36]
D., Ermon, S., and Finn, C
Rafailov, R., Sharma, A., Mitchell, E., Manning, C. D., Ermon, S., and Finn, C. Direct preference optimization: Your language model is secretly a reward model. Proceedings of the Conference on Neural Information Processing Systems (NeurIPS), 36, 2024
2024
-
[37]
E., Puigcerver, J., Djolonga, J., Peyr \'e , G., and Blondel, M
Sander, M. E., Puigcerver, J., Djolonga, J., Peyr \'e , G., and Blondel, M. Fast, differentiable and sparse top-k: a convex analysis perspective. In Proceedings of the International Conference on Machine learning (ICML), pp.\ 29919--29936, 2023
2023
-
[38]
Proximal policy optimization algorithms
Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017
2017 arXiv
-
[39]
B., Flamary, R., Courty, N., Rolet, A., and Blondel, M
Seguy, V., Damodaran, B. B., Flamary, R., Courty, N., Rolet, A., and Blondel, M. Large-scale optimal transport and mapping estimation. In Proceedings of the International Conference on Learning Representations (ICLR), 2018
2018
-
[40]
Learning Energy-Based Models by Self-normalising the Likelihood
Senetaire, H., Jeha, P., Mattei, P.-A., and Frellsen, J. Learning Energy-Based Models by Self-normalising the Likelihood . arXiv preprint arXiv:2503.07021, 2025
2025 arXiv
-
[41]
and Kingma, D
Song, Y. and Kingma, D. P. How to train your energy-based models. arXiv preprint arXiv:2101.03288, 2021
2021 arXiv
-
[42]
and McCallum, A
Sutton, C. and McCallum, A. An introduction to conditional random fields. Foundations and Trends in Machine Learning , 4 0 (4): 0 267--373, 2012
2012
-
[43]
Wainwright, M. J. and Jordan, M. I. Graphical models, exponential families, and variational inference. Foundations and Trends in Machine Learning , 1 0 (1--2): 0 1--305, 2008
2008
-
[44]
Learning Trans-dimensional Random Fields with Applications to Language Modeling
Wang, B., Ou, Z., and Tan, Z. Learning Trans-dimensional Random Fields with Applications to Language Modeling . IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI) , 40 0 (4): 0 876--890, 2018
2018
-
[45]
Ziegler, G. M. Lectures on polytopes, volume 152. Springer Science & Business Media, 2012
2012
-
[46]
Efficient computation of expectations under spanning tree distributions
Zmigrod, R., Vieira, T., and Cotterell, R. Efficient computation of expectations under spanning tree distributions. Transactions of the Association for Computational Linguistics, 9: 0 675--690, 2021
2021
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.