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 →
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 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.
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
- 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.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
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)
- [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.
- [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)
- [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.
- [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.
- [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.
- [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.
- [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
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
free parameters (9)
- DAG rank k =
8 default; ablations use 2,4,8,12,32 and full rank
- Batch size B =
64
- Number of preliminary candidates C =
100,000
- Learning rate =
0.1
- Hidden units h =
64
- Dropout rate p =
0.1
- Replay buffer size n_replay =
1024
- Training steps per iteration n_grads =
10
- Trust region counters n_succ and n_fail =
3 and 5
assumptions (5)
- domain assumption Causal sufficiency, causal minimality, and identifiability of the true DAG
- standard math BIC is a consistent scoring function
- ad hoc to paper Low-rank DAG family suffices for k much smaller than d
- domain assumption Dropout neural network stochastic forward passes provide a useful approximate posterior
- domain assumption Trust-region candidate generation covers promising regions of z-space
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 from the paper (12 more)
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]
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
2020
-
[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
2021
-
[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
2023
-
[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
1999
-
[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
1989
-
[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
2022
-
[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
2020
Show all 94 references
-
[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
2014
-
[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
1996
-
[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
2002
-
[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
2012
-
[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
2022
-
[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
2022
-
[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
2024
-
[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
2024 arXiv
-
[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
1960
-
[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
2019
-
[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
2023
-
[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
2016
-
[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
2019
-
[22]
Learning G aussian networks
Dan Geiger and David Heckerman. Learning G aussian networks. In Uncertainty Proceedings, pp.\ 235--243. 1994
1994
-
[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
2018
-
[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...
2021
-
[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
1988
-
[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
2012
-
[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
1995
-
[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
2015
-
[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
2008
-
[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...
2011
-
[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
2015
-
[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
2020
-
[33]
Toward optimal feature selection
Daphne Koller and Mehran Sahami. Toward optimal feature selection. Technical report, 1996
1996
-
[34]
Bayesian artificial intelligence
Kevin B Korb and Ann E Nicholson. Bayesian artificial intelligence. CRC press, 2010
2010
-
[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
2014
-
[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
2020
-
[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
1988
-
[38]
Hodge L aplacians on graphs
Lek-Heng Lim. Hodge L aplacians on graphs. Siam Review, 62: 0 685--715, 2020
2020
-
[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
2022
-
[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
2018
-
[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
2024
-
[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
2000
-
[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
2023
-
[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
2020
-
[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
1998
-
[46]
Models, reasoning and inference
Judea Pearl. Models, reasoning and inference. Cambridge University Press, 2000
2000
-
[47]
Causality
Judea Pearl. Causality. Cambridge University Press, 2009
2009
-
[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
2014
-
[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
2017
-
[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...
2017
-
[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
2015 arXiv
-
[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
2003
-
[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
2013
-
[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
2021
-
[55]
Counting unlabeled acyclic digraphs
Robert W Robinson. Counting unlabeled acyclic digraphs. In Combinatorial Mathematics V, pp.\ 28--43. Springer, 1977
1977
-
[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...
2022
-
[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
2014
-
[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
2005
-
[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
2023
-
[60]
Estimating the dimension of a model
Gideon Schwarz. Estimating the dimension of a model. The Annals of Statistics, pp.\ 461--464, 1978
1978
-
[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
2010
-
[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
2005
-
[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...
2015
-
[64]
Learning in probabilistic expert systems
David J Spiegelhalter. Learning in probabilistic expert systems. Bayesian statistics, 4: 0 447--465, 1992
1992
-
[65]
Causation, prediction, and search
Peter Spirtes, Clark N Glymour, Richard Scheines, and David Heckerman. Causation, prediction, and search. MIT Press, 2000
2000
-
[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
2016
-
[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
2010
-
[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
1929
-
[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
1933
-
[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
2009
-
[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
2022
-
[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
2023
-
[73]
Incremental induction of decision trees
Paul E Utgoff. Incremental induction of decision trees. Machine learning, 4: 0 161--186, 1989
1989
-
[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
1997
-
[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
1985
-
[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
2024
-
[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
2021
-
[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
2023
-
[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
2018
-
[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
2001
-
[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
2023
-
[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
2023
-
[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
2019
-
[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
2021
-
[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
2021 arXiv
-
[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
2011
-
[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
2024
-
[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
2022
-
[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
2018
-
[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
2020
-
[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
2020
-
[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 ...
-
[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...
-
[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...
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.