Pith. sign in

REVIEW 2 major objections 5 minor 94 references

Causal Discovery via Bayesian Optimization

T0 review · 2 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read DrBO leverages Bayesian optimization over a low-rank, acyclicity-free DAG representation with dropout-network surrogates to recover high-scoring causal DAGs from observational data in fewer trials and less time than state-of-the-art…

desk verdict A solid BO-based DAG learner with genuinely strong empirical results; the unproven low-rank sufficiency and the overbroad 'less time' claim are the main caveats. read the letter →

arxiv 2501.14997 v1 pith:K76TUSKB submitted 2025-01-25 cs.LG stat.ML

classification cs.LGstat.ML
keywords causaldiscoveryBayesianoptimizationscore-basedDAGlearninglow-rankrepresentationdropoutneuralnetworkscontinualobservationaldatastructuralHammingdistance
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that score-based causal discovery from purely observational data can be made substantially more sample-efficient by treating DAG search as a Bayesian optimization problem. It proposes DrBO, which optimizes the BIC score over a low-dimensional unconstrained representation of DAGs: each node gets a potential and a rank-$k$ embedding vector, and an edge exists only when the potential increases and the embedding dot product is positive. Dropout neural networks learn the node-wise score components from past evaluations and combine them into an acquisition function, so the method spends its evaluations on the most promising DAG candidates. Across dense 30- and 100-node linear-Gaussian graphs, nonlinear additive-noise data, and several real structures, DrBO is claimed to reach near-zero structural error in fewer evaluations and less wall-clock time than gradient-based and reinforcement-learning baselines. If true, this would make accurate causal discovery practical in settings where score evaluations are expensive or trial budgets are tight.

What carries the argument

The central object is the low-rank DAG parametrization $\tau(p,R):=H(\operatorname{grad}(p))\odot H(RR^{\top})$, where $H$ is the entry-wise Heaviside step, $\operatorname{grad}(p)$ records differences $p_j-p_i$, and $R\in\mathbb{R}^{d\times k}$ with $k\ll d$. It converts the combinatorial acyclicity constraint into a potential ordering: edges only go from lower to higher potential, so cycles are impossible, and the embedding-dot-product factor decides which of those potential-consistent edges are present. This map is what makes Bayesian optimization feasible, because the search variable $z=(p,R)$ has only $d(1+k)$ dimensions and lies in a known bounded box. The other load-bearing component is the surrogate: $d$ dropout single-layer networks, each predicting one node's local score component from the binary parent-set indicator, trained continually with a reservoir replay buffer, so that Thompson-sampling-style acquisition is cheap and scales with the number of evaluations.

What would settle it

Take a ground-truth adjacency $A$ from the paper's own 30-node ER8 benchmark and solve the feasibility problem: does there exist $p\in\mathbb{R}^{d}$ and $R\in\mathbb{R}^{d\times 8}$ such that $\tau(p,R)=A$? If even one such graph is infeasible at the default rank $k=8$, then unlimited evaluations cannot recover that exact DAG, and the paper's sufficiency claim for 'very complex graphs' would need qualification.

Watch

Extended reading notes

Core claim

The central claim is that the high-scoring DAG search can be solved effectively by Bayesian optimization once the DAG space is re-parametrized into a continuous, low-rank, acyclicity-free form and the score is modeled node-wise rather than globally. The paper proves that the map $\tau(p,R)=H(\operatorname{grad}(p))\odot H(RR^{\top})$ always outputs a DAG and is scale-invariant, so optimization can be restricted to a fixed hypercube of dimension $d(1+k)$. On top of this, DrBO trains $d$ independent dropout networks, one per node, to predict local score components such as the log-MSE terms of BIC, then forms acquisition values by combining sampled local scores according to the BIC rule; a continual-training replay buffer keeps retraining cost low. The paper's empirical conclusion is that this design finds near-optimal DAGs, often with structural Hamming distance close to zero where comparison methods remain well above 100, using fewer trials and less time.

Load-bearing premise

The load-bearing premise is that a fixed low rank, by default $k=8$, is rich enough to represent the true DAG, or at least some equally high-scoring DAG, in the $\tau$ family; the paper gives empirical evidence that it suffices for its test graphs, but concedes that this is not guaranteed when $k<d$.

Editorial extensions

If this is right

  • Score-based causal discovery can be driven by Bayesian optimization instead of gradient or reinforcement-learning search, which matters when each score evaluation is expensive.
  • On dense 30-node and 100-node linear-Gaussian graphs, DrBO reaches structural Hamming distance near 1–2 where baselines remain above 100 SHD at the same evaluation budget.
  • The same method transfers to nonlinear additive-noise data, binary and discrete data, BGe scores, and standardized data, with SHD often close to zero.
  • Because the surrogate scales with the number of evaluations and with dimensionality, DrBO can run into tens of thousands of trials on 100-node graphs, where GP-based Bayesian optimization would be impractical.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The authors leave implicit that the node-wise surrogate trick only requires the score to decompose additively over nodes; any consistent score with a local decomposition can drop into DrBO unchanged, making it a template for score-family-specific search.
  • Their ablation shows lower ranks give more unique DAGs per random batch and faster convergence, so rank $k$ could be annealed upward during search as a built-in curriculum, a variant the paper does not test.
  • The representability condition is graph-side, not data-side: checking whether a candidate DAG is in the image of $\tau$ at fixed $k$ is independent of sample size, so the feasibility question the paper leaves open is directly testable on its own benchmarks.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 5 minor

Summary. The paper proposes DrBO, a Bayesian optimization (BO) framework for score-based causal discovery from observational data. DrBO maps DAGs to a low-rank continuous representation tau(p,R)=H(grad(p)) odot H(R R^T) with default rank k=8, then uses batch Thompson sampling with dropout neural networks as scalable surrogates. The surrogates predict node-wise local score components (e.g., log-MSE), which are combined to form an acquisition function; candidate DAGs are proposed in a trust region around the current best representation, evaluated with the true BIC score, and the final output is the highest-scoring evaluated DAG, optionally pruned. The paper reports extensive experiments on synthetic linear-Gaussian, nonlinear GP, discrete, and real-world networks, showing that DrBO reaches low SHD with far fewer DAG evaluations than gradient-based (NOTEARS+TMPI, DAGMA, COSMO, GOLEM) and RL-based (CORL, ALIAS) baselines, especially on dense 30-node and 100-node graphs. Ablations examine rank, surrogate model choice, indirect local-score modeling, continual training, and hyperparameters. The authors provide code and release the implementation.

Significance. If the empirical findings hold, DrBO is a substantial practical advance: it demonstrates that BO with scalable neural surrogates can be competitive for high-dimensional discrete structure search, achieving near-perfect recovery on dense graphs where baselines remain far from the truth. The paper is notable for the breadth of settings (linear, nonlinear, discrete, standardized, large-scale), the per-component ablations, and the fact that the evaluation protocol is not circular: the final DAG is selected by the true BIC among evaluated candidates, while the dropout surrogates only guide candidate generation. The low-rank parameterization is a clever way to reduce the search dimension, and the paper honestly acknowledges the representational caveat for k<d. The main limitation is that the central claim that the accurate DAG is found rests on an empirical, not proven, sufficiency of the rank-8 family.

major comments (2)
  1. [Section 4.1 (Eq. (4)), Figure 3(a), Section 4.6] The search-space map tau(p,R)=H(grad(p)) odot H(R R^T) with default rank k=8 is the central device that turns Eq. (1) into an unconstrained problem, and the paper's own text concedes that for k<d this family may not contain every DAG. This is load-bearing for the abstract claim that DrBO 'can find the accurate DAG': on dense 30ER8 graphs the reported near-zero SHD (Figure 1(a), final SHD ~1.6) is computed after the pruning step described in Section 4.6, so a representable supergraph plus pruning could produce the same result even if the ground-truth DAG is not in the image of tau(.,.) for k=8. The rank ablation in Figure 3(a) only shows that lower ranks reach low SHD faster; it does not report whether the k=8 curve converges to SHD=0 with more evaluations, nor whether the full-rank representation (which can represent any DAG) eventually reaches SHD=0 on the same 30ER8 instances. Please add a direct test of representational sufficiency: for example, run k=d on 30ER8 with a large budget and report the unpruned best-SHD, report the SHD of the best unpruned DAG for k=8, or check membership of the ground-truth DAGs in the image of tau for k=8. Without such evidence, the dense-graph results remain conditional on an unverified assumption.
  2. [Abstract, Section 5.1, Table 7] The claim that DrBO finds the accurate DAG in 'less time' is not supported by the per-evaluation runtime data in Table 7: at 50,000 evaluations DrBO takes 22.9 minutes on 30ER8, while ALIAS, CORL, and COSMO take 2.4, 5.2, and 2.8 minutes respectively, and DAGMA takes <0.1 minutes. The 'less time' statement is only true in the sense of time to reach a target SHD (e.g., Figure 1(a), fourth column). Please either qualify the abstract and Section 5 to state the time-to-accuracy interpretation, or provide a comparison in which DrBO is faster in wall-clock for the same evaluation budget; as written, the abstract's 'less time' is contradicted by the authors' own table.
minor comments (5)
  1. [Appendix A.1] In the proof of Lemma 1, 'multiplying this adjacency matrix with the second term' should read 'taking the Hadamard product with the second term'; the current wording suggests matrix multiplication.
  2. [Figure 1] The first-column bar panels report TPR, Precision, Recall, F1, and FDR without numeric labels on the bars; providing the values (or a companion table) would make the aggregate comparison reproducible without reading the text.
  3. [Table 7] The DAGMA runtime entries are reported as 0.0 minutes; given that these values are used to support runtime claims, reporting more significant digits would be more informative.
  4. [Section 5.1] The phrase 'absolute overall performance' is vague; it should be stated explicitly that DrBO achieves the best value on all five metrics simultaneously.
  5. [Appendix D.3 / Section 5.2] The BnLearn experiments generate continuous data from the real network structures; stating this in Section 5.2 (rather than only in the appendix) would prevent a misreading that discrete real data are being modeled.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: DrBO selects by true BIC and the low-rank representability caveat is an explicit empirical limitation, not a definitional shortcut.

full rationale

The paper's central claim is empirical and self-contained: Algorithm 1 evaluates the true BIC for each proposed DAG (step 7) and returns the candidate with the highest true BIC (step 10). The dropout surrogate only proposes candidates; it never defines the target, so there is no fitted-input-called-prediction step. The low-rank map tau(p,R) is defined in Eq. (4) independently of the data, and Lemmas 1 and 2 are proved in the appendix rather than imported from prior work. The paper explicitly concedes that k<d may not cover all DAGs (Section 4.1: "while this may not hold for k < d, our empirical evaluations reveal that this representation suffices"), so the dense-graph near-zero SHD results are an empirical claim about this restricted family, not a derivation that assumes the conclusion. The citation to Duong et al. (2024) for full-rank representability is not load-bearing because the default rank is k=8<d and the main results do not depend on that theorem; it is a normal prior-work reference. Hyperparameters are fixed and presented with ablations. No circular step reduces the prediction to its inputs.

Assumptions & free parameters 9 free parameters · 5 assumptions · 0 invented entities

No new physical or statistical entities are introduced. The low-rank embedding is a reparametrization of DAGs, and dropout networks are standard surrogates. The main burden is the set of hand-chosen hyperparameters and the empirical low-rank sufficiency assumption.

free parameters (9)
  • DAG rank k = 8 default; ablations use 2,4,8,12,32 and full rank
    Fixed by hand across experiments; smaller k improves sample efficiency but restricts which DAGs are representable (Section 4.1 and Figure 3a).
  • Batch size B = 64
    Ablation shows a trade-off between SHD and runtime (Figure 9).
  • Number of preliminary candidates C = 100,000
    Ablation finds 10,000 optimal, but 100,000 is used for stability (Figure 10).
  • Learning rate = 0.1
    Adam learning rate, fixed; ablation shows a weak effect below 1 (Figure 13).
  • Hidden units h = 64
    Surrogate capacity; 32 also achieves vanishing SHD in ablation (Figure 14).
  • Dropout rate p = 0.1
    Higher dropout improves performance in ablation (Figure 15).
  • Replay buffer size n_replay = 1024
    Larger values reduce SHD without much runtime increase (Figure 12).
  • Training steps per iteration n_grads = 10
    Middle values are best; small values underfit and large values overfit (Figure 11).
  • Trust region counters n_succ and n_fail = 3 and 5
    Fixed following TuRBO practice (Appendix C.1).
assumptions (5)
  • domain assumption Causal sufficiency, causal minimality, and identifiability of the true DAG
    Section 3.2 assumes no unobserved confounders, no constant mechanisms, and identifiable causal models; otherwise score maximization may not recover ground truth.
  • standard math BIC is a consistent scoring function
    Section 3.3 relies on consistency of BIC so that the global maximizer of the score corresponds to the true DAG.
  • ad hoc to paper Low-rank DAG family suffices for k much smaller than d
    Section 4.1 admits this is not guaranteed for k<d and supports it only empirically; if false, the search domain excludes the optimum.
  • domain assumption Dropout neural network stochastic forward passes provide a useful approximate posterior
    Section 4.3 relies on Gal and Ghahramani's dropout approximation to guide Thompson sampling; the surrogate must rank candidates well enough for BO to help.
  • domain assumption Trust-region candidate generation covers promising regions of z-space
    Section 4.2 and Appendix C.1 assume that candidate sets near the current best point contain high-scoring DAGs; if the trust region collapses prematurely, exploration fails.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Causal Discovery via Bayesian Optimization." pith.science (2026). https://pith.science/paper/K76TUSKB

@misc{pith2026250114997,
  author       = {Pith},
  title        = {Pith review of: Causal Discovery via Bayesian Optimization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/K76TUSKB}},
  note         = {Machine review of arXiv:2501.14997}
}
read the original abstract

Existing score-based methods for directed acyclic graph (DAG) learning from observational data struggle to recover the causal graph accurately and sample-efficiently. To overcome this, in this study, we propose DrBO (DAG recovery via Bayesian Optimization)-a novel DAG learning framework leveraging Bayesian optimization (BO) to find high-scoring DAGs. We show that, by sophisticatedly choosing the promising DAGs to explore, we can find higher-scoring ones much more efficiently. To address the scalability issues of conventional BO in DAG learning, we replace Gaussian Processes commonly employed in BO with dropout neural networks, trained in a continual manner, which allows for (i) flexibly modeling the DAG scores without overfitting, (ii) incorporation of uncertainty into the estimated scores, and (iii) scaling with the number of evaluations. As a result, DrBO is computationally efficient and can find the accurate DAG in fewer trials and less time than existing state-of-the-art methods. This is demonstrated through an extensive set of empirical evaluations on many challenging settings with both synthetic and real data. Our implementation is available at https://github.com/baosws/DrBO.

Figures

Figures reproduced from arXiv: 2501.14997 by the authors.

Figure 1
Figure 1. DAG learning results on Synthetic data. First column: overall performance in terms of True Positive Rate (TPR, higher is better), Precision, Recall, and F1 score (higher is better), as well as False Discovery Rate (FDR, lower is better). Second column: we track the best Bayesian Information Criterion (BIC, higher is better) so far at every optimization step. Third and Fourth columns: we monitor the Structural Hammin… view at source ↗
Figure 2
Figure 2. [PITH_FULL_IMAGE:figures/full_fig_p009_2.png] view at source ↗
Figure 3
Figure 3. Ablating our design choices. All configurations are evaluated on 5 linear-Gaussian datasets of 1,000 samples on 30ER8 graphs. Shaded areas indicate 95% confidence intervals. against data standardization for both linear and nonlinear data. Large-scale Nonlinear Data: Fig￾ure 8 demonstrates DrBO’s competitive performance and efficiency for nonlinear data on 50- and 100-node graphs. Additional baselines. In Appendix G,… view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Causal Discovery Performance with Varying Sample Sizes. We apply our DrBO method on linear-Gaussian data with 20ER4 graphs. Shaded areas represent 95% confidence interval over 5 runs. F.1.1 DIFFERENT GRAPH TYPES We evaluate our method on different graph types, namely E…
Figure 5
Figure 5. Figure 5: BGe for Markov Equivalence Class Discovery. We compare the BGe score of ground truth DAGs and the estimations from DrBO with two popular baselines PC (Spirtes et al., 2000) and GES (Chickering, 2002). Each point corresponds to one of 50 random datasets with linear Gaus…
Figure 6
Figure 6. Figure 6: Causal Discovery performance on Binary Data. We compare our DrBO method using the BIC score for the logistic model with DAGMA (Bello et al., 2022) using the logistic loss. Each point corresponds to one of 50 random datasets with logistic data on ER graphs of 5 nodes an…
Figure 7
Figure 7. Figure 7: Causal Discovery Performance on Standardized Data. Performance metrics are Struc￾tural Hamming Distance (SHD), number of Missing, Extra, and Reverse edges. Lower values are more preferable. Error bars indicate 95% confidence intervals over 5 simulations. F.1.6 WHY LOW-…
Figure 8
Figure 8. Figure 8: DAG learning results on large-scale nonlinear data. 28 [PITH_FULL_IMAGE:figures/full_fig_p028_8.png]
Figure 9
Figure 9. Figure 9: Effect of Evaluation Batch Size B. We evaluate our method on linear-Gaussian data with 20ER4 graphs and 1,000 observations. Error bars indicate 95% confidence intervals over 5 runs. The number of evaluations is limited to 20,000. F.2.4 EFFECT OF NUMBER OF PRELIMINARY C…
Figure 10
Figure 10. Figure 10: Effect of Number of Preliminary Candidates C. We evaluate our method on linear￾Gaussian data with 20ER4 graphs and 1,000 observations. Error bars indicate 95% confidence intervals over 5 runs. The number of evaluations is limited to 20,000. F.2.5 EFFECT OF NUMBER OF T…
Figure 11
Figure 11. Figure 11: Effect of Number of Training Steps per BO Iteration ngrads. We evaluate our method on linear-Gaussian data with 20ER4 graphs and 1,000 observations. Error bars indicate 95% confi￾dence intervals over 5 runs. The number of evaluations is limited to 20,000. F.2.6 EFFECT…
Figure 12
Figure 12. Figure 12: Effect of Replay Buffer Size nreplay. We evaluate our method on linear-Gaussian data with 20ER4 graphs and 1,000 observations. Error bars indicate 95% confidence intervals over 5 runs. The number of evaluations is limited to 20,000. F.2.7 EFFECT OF LEARNING RATE [PIT…
Figure 13
Figure 13. Figure 13: depicts that the learning rate has a weak effect on the performance and scalability of our method, where any value below 1 can achieve the same level of SHD and runtime. The SHD only becomes large for a high learning rate of 1. 0 1 2 3 4 0.0001 0.001 0.01 0.1 1.0 Lear…
Figure 14
Figure 14. Figure 14: Effect of Number of Hidden Units h. We evaluate our method on linear-Gaussian data with 20ER4 graphs and 1,000 observations. Error bars indicate 95% confidence intervals over 5 runs. The number of evaluations is limited to 20,000. F.2.9 EFFECT OF NUMBER OF DROPOUT RAT…
Figure 15
Figure 15. Figure 15: suggests that the performance of our method improves with higher dropout rates, while the runtime does not vary significantly. 0 1 2 3 4 0.01 0.05 0.1 0.2 0.3 Dropout rate ( p) Structural Hamming Distance 8.42 8.44 8.46 8.48 8.50 Minutes [PITH_FULL_IMAGE:figures/full…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

94 extracted references · 67 canonical work pages

  1. [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. [2]

    Causal B ayesian optimization

    Virginia Aglietti, Xiaoyu Lu, Andrei Paleyes, and Javier Gonz \'a lez. Causal B ayesian optimization. In Proceedings of the International Conference on Artificial Intelligence and Statistics, pp.\ 3155--3164. PMLR, 2020

  3. [3]

    Dynamic causal bayesian optimization

    Virginia Aglietti, Neil Dhir, Javier Gonz \'a lez, and Theodoros Damoulas. Dynamic causal bayesian optimization. In Advances in Neural Information Processing Systems, pp.\ 10549--10560, 2021

  4. [4]

    Bayes DAG : Gradient-based posterior sampling for causal discovery

    Yashas Annadani, Nick Pawlowski, Joel Jennings, Stefan Bauer, Cheng Zhang, and Wenbo Gong. Bayes DAG : Gradient-based posterior sampling for causal discovery. In Advances in Neural Information Processing Systems, 2023

  5. [5]

    Emergence of scaling in random networks

    Albert-L \'a szl \'o Barab \'a si and R \'e ka Albert. Emergence of scaling in random networks. Science, 286: 0 509--512, 1999

  6. [6]

    The ALARM monitoring system: A case study with two probabilistic inference techniques for belief networks

    Ingo A Beinlich, Henri Jacques Suermondt, R Martin Chavez, and Gregory F Cooper. The ALARM monitoring system: A case study with two probabilistic inference techniques for belief networks. In Proceedings of the European Conference on Artificial Intelligence in Medicine, pp.\ 247--256, 1989

  7. [7]

    DAGMA : learning DAG s via M -matrices and a log-determinant acyclicity characterization

    Kevin Bello, Bryon Aragam, and Pradeep Ravikumar. DAGMA : learning DAG s via M -matrices and a log-determinant acyclicity characterization. In Advances in Neural Information Processing Systems, pp.\ 8226--8239, 2022

  8. [8]

    Differentiable causal discovery from interventional data

    Philippe Brouillard, S \'e bastien Lachapelle, Alexandre Lacoste, Simon Lacoste-Julien, and Alexandre Drouin. Differentiable causal discovery from interventional data. Advances in Neural Information Processing Systems, 33: 0 21865--21877, 2020

Show all 94 references
  1. [9]

    CAM : Causal additive models, high-dimensional order search and penalized regression

    Peter B \"u hlmann, Jonas Peters, and Jan Ernest. CAM : Causal additive models, high-dimensional order search and penalized regression. The Annals of Statistics, 42: 0 2526--2556, 2014

  2. [10]

    Learning B ayesian networks is NP -complete

    David Maxwell Chickering. Learning B ayesian networks is NP -complete. Learning from data: Artificial intelligence and statistics V, pp.\ 121--130, 1996

  3. [11]

    Optimal structure identification with greedy search

    David Maxwell Chickering. Optimal structure identification with greedy search. Journal of Machine Learning Research, 3: 0 507--554, 2002

  4. [12]

    Learning high-dimensional directed acyclic graphs with latent and selection variables

    Diego Colombo, Marloes H Maathuis, Markus Kalisch, and Thomas S Richardson. Learning high-dimensional directed acyclic graphs with latent and selection variables. The Annals of Statistics, pp.\ 294--321, 2012

  5. [13]

    Multi-objective bayesian optimization over high-dimensional search spaces

    Samuel Daulton, David Eriksson, Maximilian Balandat, and Eytan Bakshy. Multi-objective bayesian optimization over high-dimensional search spaces. In Uncertainty in Artificial Intelligence, pp.\ 507--517. PMLR, 2022

  6. [14]

    Bayesian structure learning with generative flow networks

    Tristan Deleu, Ant \'o nio G \'o is, Chris Emezue, Mansi Rankawat, Simon Lacoste-Julien, Stefan Bauer, and Yoshua Bengio. Bayesian structure learning with generative flow networks. In Proceedings of the Uncertainty in Artificial Intelligence, pp.\ 518--528, 2022

  7. [15]

    Joint B ayesian inference of graphical structure and parameters with a single generative flow network

    Tristan Deleu, Mizu Nishikawa-Toomey, Jithendaraa Subramanian, Nikolay Malkin, Laurent Charlin, and Yoshua Bengio. Joint B ayesian inference of graphical structure and parameters with a single generative flow network. In Advances in Neural Information Processing Systems, 2024

  8. [16]

    ALIAS : DAG learning with efficient unconstrained policies

    Bao Duong, Hung Le, and Thin Nguyen. ALIAS : DAG learning with efficient unconstrained policies. arXiv preprint arXiv:2408.13448, 2024

  9. [17]

    On the evolution of random graphs

    Paul Erd o s and Alfr\' e d R\' e nyi. On the evolution of random graphs. Publications of the Mathematical Institute of the Hungarian Academy of Sciences, 1960

  10. [18]

    Scalable global optimization via local B ayesian optimization

    David Eriksson, Michael Pearce, Jacob Gardner, Ryan D Turner, and Matthias Poloczek. Scalable global optimization via local B ayesian optimization. Advances in Neural Information Processing Systems, 32, 2019

  11. [19]

    On low-rank directed acyclic graphs and causal structure learning

    Zhuangyan Fang, Shengyu Zhu, Jiji Zhang, Yue Liu, Zhitang Chen, and Yangbo He. On low-rank directed acyclic graphs and causal structure learning. IEEE Transactions on Neural Networks and Learning Systems, 35 0 (4): 0 4924--4937, 2023

  12. [20]

    Dropout as a bayesian approximation: Representing model uncertainty in deep learning

    Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Representing model uncertainty in deep learning. In Proceedings of the International Conference on Machine Learning, pp.\ 1050--1059, 2016

  13. [21]

    Deep active learning with a neural architecture search

    Yonatan Geifman and Ran El-Yaniv. Deep active learning with a neural architecture search. In Advances in Neural Information Processing Systems, 2019

  14. [22]

    Learning G aussian networks

    Dan Geiger and David Heckerman. Learning G aussian networks. In Uncertainty Proceedings, pp.\ 235--243. 1994

  15. [23]

    Heterogeneous ensemble-based infill criterion for evolutionary multiobjective optimization of expensive problems

    Dan Guo, Yaochu Jin, Jinliang Ding, and Tianyou Chai. Heterogeneous ensemble-based infill criterion for evolutionary multiobjective optimization of expensive problems. IEEE Transactions on Cybernetics, 49 0 (3): 0 1012--1025, 2018

  16. [24]

    Evolutionary optimization of high-dimensional multiobjective and many-objective expensive problems assisted by a dropout neural network

    Dan Guo, Xilu Wang, Kailai Gao, Yaochu Jin, Jinliang Ding, and Tianyou Chai. Evolutionary optimization of high-dimensional multiobjective and many-objective expensive problems assisted by a dropout neural network. IEEE transactions on systems, man, and cybernetics: systems, 52...

  17. [25]

    On the choice of a model to fit data from an exponential family

    Dominique Marie-Annick Haughton. On the choice of a model to fit data from an exponential family. The Annals of Statistics, pp.\ 342--355, 1988

  18. [26]

    Characterization and greedy learning of interventional M arkov equivalence classes of directed acyclic graphs

    Alain Hauser and Peter B \"u hlmann. Characterization and greedy learning of interventional M arkov equivalence classes of directed acyclic graphs. Journal of Machine Learning Research, 13 0 (1): 0 2409--2464, 2012

  19. [27]

    Learning B ayesian networks: The combination of knowledge and statistical data

    David Heckerman, Dan Geiger, and David M Chickering. Learning B ayesian networks: The combination of knowledge and statistical data. Machine Learning, pp.\ 197--243, 1995

  20. [28]

    Scalable variational G aussian process classification

    James Hensman, Alexander Matthews, and Zoubin Ghahramani. Scalable variational G aussian process classification. In Proceedings of the International Conference on Artificial Intelligence and Statistics, pp.\ 351--360. PMLR, 2015

  21. [29]

    Nonlinear causal discovery with additive noise models

    Patrik Hoyer, Dominik Janzing, Joris M Mooij, Jonas Peters, and Bernhard Sch \"o lkopf. Nonlinear causal discovery with additive noise models. In Advances in Neural Information Processing Systems, 2008

  22. [30]

    Sequential model-based optimization for general algorithm configuration

    Frank Hutter, Holger H Hoos, and Kevin Leyton-Brown. Sequential model-based optimization for general algorithm configuration. In Learning and Intelligent Optimization: 5th International Conference, LION 5, Rome, Italy, January 17-21, 2011. Selected Papers 5, pp.\ 507--523. Spr...

  23. [31]

    Batch normalization: Accelerating deep network training by reducing internal covariate shift

    Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In Proceedings of the International Conference on Machine Learning, 2015

  24. [32]

    Batch B ayesian optimization using multi-scale search

    Tinu Theckel Joy, Santu Rana, Sunil Gupta, and Svetha Venkatesh. Batch B ayesian optimization using multi-scale search. Knowledge-Based Systems, 187: 0 104818, 2020

  25. [33]

    Toward optimal feature selection

    Daphne Koller and Mehran Sahami. Toward optimal feature selection. Technical report, 1996

  26. [34]

    Bayesian artificial intelligence

    Kevin B Korb and Ann E Nicholson. Bayesian artificial intelligence. CRC press, 2010

  27. [35]

    Addendum on the scoring of G aussian directed acyclic graphical models

    Jack Kuipers, Giusi Moffa, and David Heckerman. Addendum on the scoring of G aussian directed acyclic graphical models. The Annals of Statistics, 42 0 (4): 0 1689 -- 1691, 2014

  28. [36]

    Gradient-based neural DAG learning

    S \'e bastien Lachapelle, Philippe Brouillard, Tristan Deleu, and Simon Lacoste-Julien. Gradient-based neural DAG learning. In Proceedings of the International Conference on Learning Representations, 2020

  29. [37]

    Local computations with probabilities on graphical structures and their application to expert systems

    Steffen L Lauritzen and David J Spiegelhalter. Local computations with probabilities on graphical structures and their application to expert systems. Journal of the Royal Statistical Society: Series B (Methodological), 50 0 (2): 0 157--194, 1988

  30. [38]

    Hodge L aplacians on graphs

    Lek-Heng Lim. Hodge L aplacians on graphs. Siam Review, 62: 0 685--715, 2020

  31. [39]

    Efficient neural causal discovery without acyclicity constraints

    Phillip Lippe, Taco Cohen, and Efstratios Gavves. Efficient neural causal discovery without acyclicity constraints. In Proceedings of the International Conference on Learning Representations, 2022

  32. [40]

    Progressive neural architecture search

    Chenxi Liu, Barret Zoph, Maxim Neumann, Jonathon Shlens, Wei Hua, Li-Jia Li, Li Fei-Fei, Alan Yuille, Jonathan Huang, and Kevin Murphy. Progressive neural architecture search. In Proceedings of the European Conference on Computer Vision, pp.\ 19--34, 2018

  33. [41]

    Constraint-free structure learning with smooth acyclic orientations

    Riccardo Massidda, Francesco Landolfi, Martina Cinquini, and Davide Bacciu. Constraint-free structure learning with smooth acyclic orientations. In Proceedings of the International Conference on Learning Representations, 2024

  34. [42]

    A comparison of three methods for selecting values of input variables in the analysis of output from a computer code

    Michael D McKay, Richard J Beckman, and William J Conover. A comparison of three methods for selecting values of input variables in the analysis of output from a computer code. Technometrics, 42 0 (1): 0 55--61, 2000

  35. [43]

    Scalable causal discovery with score matching

    Francesco Montagna, Nicoletta Noceti, Lorenzo Rosasco, Kun Zhang, and Francesco Locatello. Scalable causal discovery with score matching. In Conference on Causal Learning and Reasoning, pp.\ 752--771. PMLR, 2023

  36. [44]

    On the role of sparsity and DAG constraints for learning linear DAG s

    Ignavier Ng, AmirEmad Ghassami, and Kun Zhang. On the role of sparsity and DAG constraints for learning linear DAG s. In Advances in Neural Information Processing Systems, pp.\ 17943--17954, 2020

  37. [45]

    Scrambling S obol' and N iederreiter-- X ing points

    Art B Owen. Scrambling S obol' and N iederreiter-- X ing points. Journal of complexity, 14 0 (4): 0 466--489, 1998

  38. [46]

    Models, reasoning and inference

    Judea Pearl. Models, reasoning and inference. Cambridge University Press, 2000

  39. [47]

    Causality

    Judea Pearl. Causality. Cambridge University Press, 2009

  40. [48]

    Causal discovery with continuous additive noise models

    Jonas Peters, Joris M Mooij, Dominik Janzing, and Bernhard Sch \"o lkopf. Causal discovery with continuous additive noise models. Journal of Machine Learning Research, 2014

  41. [49]

    Elements of causal inference: foundations and learning algorithms

    Jonas Peters, Dominik Janzing, and Bernhard Sch \"o lkopf. Elements of causal inference: foundations and learning algorithms. The MIT Press, 2017

  42. [50]

    Joseph Ramsey, Madelyn Glymour, Ruben Sanchez-Romero, and Clark Glymour. A million variables and more: the Fast Greedy Equivalence Search algorithm for learning high-dimensional graphical causal models, with an application to functional magnetic resonance images. International...

  43. [51]

    Scaling up greedy causal search for continuous variables

    Joseph D Ramsey. Scaling up greedy causal search for continuous variables. arXiv preprint arXiv:1507.07749, 2015

  44. [52]

    Gaussian processes in machine learning

    Carl Edward Rasmussen. Gaussian processes in machine learning. In Summer school on machine learning, pp.\ 63--71. Springer, 2003

  45. [53]

    Combining radial basis function surrogates and dynamic coordinate search in high-dimensional expensive black-box optimization

    Rommel G Regis and Christine A Shoemaker. Combining radial basis function surrogates and dynamic coordinate search in high-dimensional expensive black-box optimization. Engineering Optimization, 45 0 (5): 0 529--555, 2013

  46. [54]

    Beware of the simulated dag! causal discovery benchmarks may be easy to game

    Alexander Reisach, Christof Seiler, and Sebastian Weichwald. Beware of the simulated dag! causal discovery benchmarks may be easy to game. In Advances in Neural Information Processing Systems, volume 34, pp.\ 27772--27784, 2021

  47. [55]

    Counting unlabeled acyclic digraphs

    Robert W Robinson. Counting unlabeled acyclic digraphs. In Combinatorial Mathematics V, pp.\ 28--43. Springer, 1977

  48. [56]

    a us Kleindessner, Chris Russell, Dominik Janzing, Bernhard Sch \

    Paul Rolland, Volkan Cevher, Matth \"a us Kleindessner, Chris Russell, Dominik Janzing, Bernhard Sch \"o lkopf, and Francesco Locatello. Score matching enables causal discovery of nonlinear additive noise models. In Proceedings of the International Conference on Machine Learni...

  49. [57]

    Learning to optimize via posterior sampling

    Daniel Russo and Benjamin Van Roy. Learning to optimize via posterior sampling. Mathematics of Operations Research, 39 0 (4): 0 1221--1243, 2014

  50. [58]

    Causal protein-signaling networks derived from multiparameter single-cell data

    Karen Sachs, Omar Perez, Dana Pe'er, Douglas A Lauffenburger, and Garry P Nolan. Causal protein-signaling networks derived from multiparameter single-cell data. Science, 308: 0 523--529, 2005

  51. [59]

    Tsaftaris

    Pedro Sanchez, Xiao Liu, Alison Q O'Neil, and Sotirios A. Tsaftaris. Diffusion models for causal discovery via topological ordering. In Proceedings of the International Conference on Learning Representations, 2023

  52. [60]

    Estimating the dimension of a model

    Gideon Schwarz. Estimating the dimension of a model. The Annals of Statistics, pp.\ 461--464, 1978

  53. [61]

    Learning B ayesian networks with the bnlearn R package

    Marco Scutari. Learning B ayesian networks with the bnlearn R package. Journal of Statistical Software, 35: 0 1--22, 2010

  54. [62]

    Sparse gaussian processes using pseudo-inputs

    Edward Snelson and Zoubin Ghahramani. Sparse gaussian processes using pseudo-inputs. Advances in neural information processing systems, 18, 2005

  55. [63]

    Scalable bayesian optimization using deep neural networks

    Jasper Snoek, Oren Rippel, Kevin Swersky, Ryan Kiros, Nadathur Satish, Narayanan Sundaram, Mostofa Patwary, Mr Prabhat, and Ryan Adams. Scalable bayesian optimization using deep neural networks. In Proceedings of the International Conference on Machine Learning, pp.\ 2171--218...

  56. [64]

    Learning in probabilistic expert systems

    David J Spiegelhalter. Learning in probabilistic expert systems. Bayesian statistics, 4: 0 447--465, 1992

  57. [65]

    Causation, prediction, and search

    Peter Spirtes, Clark N Glymour, Richard Scheines, and David Heckerman. Causation, prediction, and search. MIT Press, 2000

  58. [66]

    Bayesian optimization with robust B ayesian neural networks

    Jost Tobias Springenberg, Aaron Klein, Stefan Falkner, and Frank Hutter. Bayesian optimization with robust B ayesian neural networks. Advances in Neural Information Processing Systems, 29, 2016

  59. [67]

    Gaussian process optimization in the bandit setting: No regret and experimental design

    Niranjan Srinivas, Andreas Krause, Sham M Kakade, and Matthias Seeger. Gaussian process optimization in the bandit setting: No regret and experimental design. In Proceedings of the International Conference on Machine Learning, 2010

  60. [68]

    Dropout: a simple way to prevent neural networks from overfitting

    Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15 0 (1): 0 1929--1958, 2014

  61. [69]

    On the likelihood that one unknown probability exceeds another in view of the evidence of two samples

    William R Thompson. On the likelihood that one unknown probability exceeds another in view of the evidence of two samples. Biometrika, 25 0 (3-4): 0 285--294, 1933

  62. [70]

    Variational learning of inducing variables in sparse G aussian processes

    Michalis Titsias. Variational learning of inducing variables in sparse G aussian processes. In Proceedings of the Artificial Intelligence and Statistics, pp.\ 567--574. PMLR, 2009

  63. [71]

    Active bayesian causal inference

    Christian Toth, Lars Lorch, Christian Knoll, Andreas Krause, Franz Pernkopf, Robert Peharz, and Julius Von K \"u gelgen. Active bayesian causal inference. In Advances in Neural Information Processing Systems, pp.\ 16261--16275, 2022

  64. [72]

    Differentiable bayesian structure learning with acyclicity assurance

    Quang-Duy Tran, Phuoc Nguyen, Bao Duong, and Thin Nguyen. Differentiable bayesian structure learning with acyclicity assurance. In Proceedings of the IEEE International Conference on Data Mining, pp.\ 598--607, 2023

  65. [73]

    Incremental induction of decision trees

    Paul E Utgoff. Incremental induction of decision trees. Machine learning, 4: 0 161--186, 1989

  66. [74]

    Decision tree induction based on efficient tree restructuring

    Paul E Utgoff, Neil C Berkman, and Jeffery A Clouse. Decision tree induction based on efficient tree restructuring. Machine Learning, 29: 0 5--44, 1997

  67. [75]

    Random sampling with a reservoir

    Jeffrey S Vitter. Random sampling with a reservoir. ACM Transactions on Mathematical Software (TOMS), 11 0 (1): 0 37--57, 1985

  68. [76]

    A comprehensive survey of continual learning: theory, method and application

    Liyuan Wang, Xingxing Zhang, Hang Su, and Jun Zhu. A comprehensive survey of continual learning: theory, method and application. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024

  69. [77]

    Ordering-based causal discovery with reinforcement learning

    Xiaoqiang Wang, Yali Du, Shengyu Zhu, Liangjun Ke, Zhitang Chen, Jianye Hao, and Jun Wang. Ordering-based causal discovery with reinforcement learning. In Proceedings of the International Joint Conference on Artificial Intelligence, pp.\ 3566--3573, 2021

  70. [78]

    Recent advances in B ayesian optimization

    Xilu Wang, Yaochu Jin, Sebastian Schmitt, and Markus Olhofer. Recent advances in B ayesian optimization. ACM Computing Surveys, 55: 0 1--36, 2023

  71. [79]

    Batched large-scale B ayesian optimization in high-dimensional spaces

    Zi Wang, Clement Gehring, Pushmeet Kohli, and Stefanie Jegelka. Batched large-scale B ayesian optimization in high-dimensional spaces. In Proceedings of the International Conference on Artificial Intelligence and Statistics, pp.\ 745--754. PMLR, 2018

  72. [80]

    Feature selection for high-dimensional genomic microarray data

    Eric P Xing, Michael I Jordan, Richard M Karp, et al. Feature selection for high-dimensional genomic microarray data. In Proceedings of the International Conference on Machine Learning, volume 1, pp.\ 601--608. Citeseer, 2001

  73. [81]

    Reinforcement causal structure learning on order graph

    Dezhi Yang, Guoxian Yu, Jun Wang, Zhengtian Wu, and Maozu Guo. Reinforcement causal structure learning on order graph. In Proceedings of the AAAI Conference on Artificial Intelligence, pp.\ 10737--10744, 2023 a

  74. [82]

    Causal discovery by graph attention reinforcement learning

    Dezhi Yang, Guoxian Yu, Jun Wang, Zhongmin Yan, and Maozu Guo. Causal discovery by graph attention reinforcement learning. In Proceedings of the SIAM International Conference on Data Mining, pp.\ 28--36, 2023 b

  75. [83]

    DAG-GNN : DAG structure learning with graph neural networks

    Yue Yu, Jie Chen, Tian Gao, and Mo Yu. DAG-GNN : DAG structure learning with graph neural networks. In Proceedings of the International Conference on Machine Learning, pp.\ 7154--7163, 2019

  76. [84]

    DAG s with N o C url: An efficient DAG structure learning approach

    Yue Yu, Tian Gao, Naiyu Yin, and Qiang Ji. DAG s with N o C url: An efficient DAG structure learning approach. In Proceedings of the International Conference on Machine Learning, pp.\ 12156--12166, 2021

  77. [85]

    g C astle: A python toolbox for causal discovery

    Keli Zhang, Shengyu Zhu, Marcus Kalander, Ignavier Ng, Junjian Ye, Zhitang Chen, and Lujia Pan. g C astle: A python toolbox for causal discovery. arXiv preprint arXiv:2111.15155, 2021

  78. [86]

    Kernel-based conditional independence test and application in causal discovery

    Kun Zhang, Jonas Peters, Dominik Janzing, and Bernhard Sch\" o lkopf. Kernel-based conditional independence test and application in causal discovery. In Proceedings of the Conference on Uncertainty in Artificial Intelligence, pp.\ 804--813, 2011

  79. [87]

    Bayesian active causal discovery with multi-fidelity experiments

    Zeyu Zhang, Chaozhuo Li, Xu Chen, and Xing Xie. Bayesian active causal discovery with multi-fidelity experiments. In Advances in Neural Information Processing Systems, 2024

  80. [88]

    Truncated matrix power iteration for differentiable DAG learning

    Zhen Zhang, Ignavier Ng, Dong Gong, Yuhang Liu, Ehsan Abbasnejad, Mingming Gong, Kun Zhang, and Javen Qinfeng Shi. Truncated matrix power iteration for differentiable DAG learning. In Advances in Neural Information Processing Systems, pp.\ 18390--18402, 2022

  81. [89]

    Xun Zheng, Bryon Aragam, Pradeep Ravikumar, and Eric P. Xing. D AGs with NO TEARS : Continuous optimization for structure learning. In Advances in Neural Information Processing Systems, pp.\ 9472--9483, 2018

  82. [90]

    Xun Zheng, Chen Dan, Bryon Aragam, Pradeep Ravikumar, and Eric P. Xing. Learning sparse nonparametric DAG s. In Proceedings of the International Conference on Artificial Intelligence and Statistics, 2020

  83. [91]

    Causal discovery with reinforcement learning

    Shengyu Zhu, Ignavier Ng, and Zhitang Chen. Causal discovery with reinforcement learning. In Proceedings of the International Conference on Learning Representations, 2020

  84. [92]

    @esa (Ref

    \@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...

  85. [93]

    \@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...

  86. [94]

    @open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.