Pith. sign in

REVIEW 5 major objections 5 minor 48 references

Graph-attention-based Casual Discovery with Trust Region-navigated Clipping Policy Optimization

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

Pith's one-line read The paper claims that per-edge trust-region clipping makes reinforcement-learning-based causal discovery both steadier and more accurate, and that a scaled dot-product graph attention encoder adds further gains, with best structural…

desk verdict A reasonable incremental RL-for-causal-discovery package with real empirical work, but the central trust-region claim is mathematically unsupported and the paper's own results undercut its headline. read the letter →

arxiv 2412.19578 v1 pith:TPKND6F3 submitted 2024-12-27 cs.LG cs.AI

classification cs.LGcs.AI
keywords causaldiscoveryreinforcementlearningpolicyoptimizationtrustregiongraphattentionnetworkdirectedacyclicBayesianinformationcriterionprioritizedexperiencereplay
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

The paper tries to establish that reinforcement-learning-based causal discovery, which searches for the best-scored directed acyclic graph by sampling adjacency matrices, can be made more accurate and stable with a per-edge clipping rule. The trouble it addresses is that the graph action is a product of many independent edge decisions, so PPO's fixed global clipping lets small per-edge deviations multiply into a large aggregate deviation. The proposed TRC rule clips an edge's update only when that edge's own statistical distance from the old policy crosses a threshold, leaving other edges free. The paper pairs this with SDGAT, a scaled dot-product graph attention encoder that extracts variable features without prior graph information. On synthetic, SynTReN, and CYTO data, TRC is reported to beat REINFORCE, prioritized-sampling REINFORCE, PPO, and non-RL baselines, with the best structural Hamming distances, a count of edge edits needed to match the true graph.

What carries the argument

The load-bearing mechanism is the KL-gated clipping rule of TRC, built on the factorization of the graph policy into independent Bernoulli subpolicies, one per directed edge. For each edge, the likelihood ratio is clipped only if the per-edge KL divergence between the new and old policies exceeds a threshold, and otherwise it is retained exactly. The paper argues this gives first-order efficiency with trust-region safety, avoiding both TRPO's cost and PPO's aggregate drift. The supporting encoder, SDGAT, uses scaled dot-product attention in a two-level multi-head design to extract variable features without requiring prior neighborhood information, which the paper claims is better suited to causal discovery than GAT's additive attention.

What would settle it

Run TRC on a 12-node linear-Gaussian dataset and record the joint KL divergence between old and new policies at every update; if the joint KL regularly exceeds the intended trust-region bound while per-edge clipping is active, the central mechanism is not doing its claimed work.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that the failure of PPO in causal discovery comes from aggregate constraint deviation: the joint likelihood ratio is the product of $n(n-1)$ per-edge ratios, so even trivial per-edge violations compound. TRC replaces the ratio-triggered clipping of PPO with a trust-region-triggered clipping: each per-edge ratio is clipped to a fixed interval around 1 only when that edge's own KL divergence crosses a threshold, and is left untouched otherwise. This is claimed to keep the joint policy near the old policy while preserving the exploratory freedom of edges that have not drifted. With the SDGAT encoder replacing GAT's additive attention by scaled dot-product attention, TRC-BIC and TRC-BIC2 are reported to obtain the lowest structural Hamming distances on the SynTReN pseudo-real datasets and the CYTO protein-signaling dataset among all compared methods.

Load-bearing premise

The paper assumes, without proof, that gating each edge's update by that edge's own statistical distance from its old policy keeps the whole product-of-edges policy inside a trust region; if this per-edge gate does not control the joint deviation, TRC loses its claimed advantage over PPO.

Editorial extensions

If this is right

  • On the 12-node linear-Gaussian and LiNGAM settings, TRC converges to a batch negative reward around -2.35 and stops fluctuating earlier than REINFORCE or PSR, with PPO excluded because its SHD exceeded 35.
  • On nonlinear quadratic data, TRC produces graphs with SHD at most 1, effectively recovering the true graph.
  • On SynTReN, TRC-BIC and TRC-BIC2 reach SHD 35.0 and 34.9, the best among all compared methods, and on CYTO they reach SHD 9 and 10.
  • With TRC-BIC on CYTO, the SDGAT encoder converges to a reward of -5.48 with standard deviation 0.27 and better final metrics than GAT and Transformer encoders.
  • The TRC idea is claimed to generalize to other high-dimensional combinatorial optimization problems whose actions decompose into many independent subactions.

Reading between the lines

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

  • Beyond the paper, one can directly test whether the per-edge gating actually controls the joint policy by computing the aggregate KL divergence during TRC training; the paper reports clipping rates but not joint KL values, so this is a concrete way to verify the mechanism.
  • If TRC works as claimed, the same per-edge clipping rule could transfer to other combinatorial generators, such as molecule or architecture generation, where the action is a product of many independent choices rather than Bernoulli edges.
  • The paper leaves implicit that SDGAT could serve as a general structure-agnostic attention encoder, since its experiments only cover causal discovery and the authors themselves note that transductive and inductive performance remains untested.
  • A more principled schedule for the clipping threshold and the trust-region threshold could replace the grid search reported in the appendix, provided a closed-form relation between per-edge KL and joint-policy KL is derived.
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

5 major / 5 minor

Summary. The manuscript proposes Trust Region-navigated Clipping policy optimization (TRC) for RL-based causal discovery, along with a scaled dot-product graph attention encoder (SDGAT). The authors argue that REINFORCE is prone to local convergence, TRPO is computationally expensive, and PPO suffers from aggregate deviation because the joint likelihood ratio is a product of many per-edge ratios; TRC replaces PPO's ratio trigger by a per-edge KL-divergence trigger. Experiments on synthetic linear-Gaussian, LiNGAM, quadratic, GP, SynTReN, and CYTO datasets compare TRC-BIC/TRC-BIC2, PSR, REINFORCE, and non-RL baselines. The central claims are that TRC is more robust and faster than PPO/REINFORCE/PSR and that SDGAT improves causal encoding.

Significance. The problem is important: RL-based causal discovery needs stable policy optimization for high-dimensional binary action spaces. The paper's identification of aggregate deviation in PPO's product ratio is valid and interesting. The SDGAT encoder is a reasonable extension of GAT, and the experimental campaign is broad, covering both synthetic and real benchmarks. The paper ships explicit pseudocode for all algorithms and attempts to justify every design choice. However, the load-bearing theoretical mechanism for TRC is not established: as defined, it does not bound the joint ratio or the joint KL divergence, so the claimed improvement over PPO is unverified. The contradictory GP result and the tuning of hyperparameters on evaluation datasets further weaken the empirical claims.

major comments (5)
  1. [V-C, Algorithm 3, Eq. (19)] The central robustness claim is unsupported. Eq. (19) clips the per-edge likelihood ratio only when that edge's own D_KL exceeds sigma. For independent Bernoulli subpolicies, D_KL can be arbitrarily small while the likelihood ratio q/p is large (whenever the old probability p is small), so ratios far outside [1-epsilon, 1+epsilon] are never clipped. Moreover, even if every ratio were clipped, the surrogate in Algorithm 3 line 9 uses the product over all subactions; with n=12 and epsilon=0.2, (1+epsilon)^{n(n-1)} is roughly 3.5e10, so the aggregate deviation the authors attribute to PPO remains present in TRC. No bound is provided on the joint ratio or on D_KL(b, pi_theta | S), and Fig. 7 reports only clipping frequencies, which do not measure trust-region satisfaction. The stated guarantee that TRC 'stays safe in the KL bounds' (Section VI-A) is therefore not established.
  2. [VI-A, Fig. 7] PPO is excluded from all quantitative comparisons after being described as 'miserable' (SHD over 35). The paper therefore never reports a head-to-head TRC-versus-PPO comparison on the same benchmark; the abstract and contribution claims that TRC outperforms PPO are not supported by any table or figure. At minimum, a table with PPO results and variance across seeds is required before such claims can be evaluated.
  3. [VI-B, Fig. 9] The GP experiment directly contradicts the paper's general claim. The text states that 'PSR would deliver the best result when combined with BIC, whilst REINFORCE still lag behind the other two RL approaches.' This means on one of the four synthetic settings, the proposed TRC does not outperform PSR. The abstract and introduction claim TRC outperforms 'former RL methods' without qualification. This internal inconsistency must be addressed by either revising the claim or explaining this result.
  4. [Appendix A, Section VI] The (epsilon, delta) pairs are selected by grid search on the CYTO dataset, and the text says 'the choice of (epsilon-delta) pair for synthetic dataset is obtained likewise,' i.e., tuned on the same datasets later used for final SHD reporting. This selection on the test sets inflates the reported performance and makes comparisons with fixed-default baselines unfair. The paper should use a validation-set split or report the sensitivity of the final results to these hyperparameters.
  5. [Algorithm 4, Table III] The penalty schedule is internally inconsistent and non-reproducible. Table III lists Lambda_1 = 0 and BIC_u = -1, while the text says lambda_1 is increased with upper bound Lambda_1 and lambda_2 is increased with upper bound BIC_u. With BIC_u = -1, the update lambda_2 <- min(lambda_2 + Delta_2, BIC_u) drives lambda_2 negative, which turns the acyclicity penalty into a reward for cycles; Lambda_1 = 0 prevents lambda_1 from ever becoming positive. In addition, Algorithm 4 requires BIC0, but Table III does not list it. These issues must be corrected and the actual values used in the experiments reported.
minor comments (5)
  1. [Title and Abstract] The title and abstract use 'Casual Discovery' where 'Causal Discovery' is meant; also 'without priori neighbourhood information' should be 'without a priori neighbourhood information' in the abstract and Section IV-A.
  2. [Section VI-C, Fig. 10] The caption for Fig. 10 says the CYTO dataset has '14 nodes,' while the text states the graph has 11 nodes and 17 edges; please reconcile this discrepancy.
  3. [Equation (5)] Equation (5) uses the notation '[X At]_i,j' without defining it; the regression estimate for Xi,j should be spelled out.
  4. [Section V, Algorithms 1 and 2] The advantage conventions differ between Algorithm 1 line 4 (Rt - Rm - V_omega) and Algorithm 2 line 2 (Rt + Rm - V_omega); this sign inconsistency should be checked and corrected.
  5. [Section VI-A, Fig. 7 and related text] The claim that TRC 'outperforms former RL methods' is not placed in the context of recent RL-based causal discovery approaches such as CORL or DAG-Actor; the scope of the comparison should be stated.

Circularity Check

1 steps flagged · score 2.0 of 10

No derivation is circular; the mild burden is from tuning (ε, δ) on CYTO and then reporting CYTO as the headline result.

  1. fitted input called prediction [Appendix A (Table II, grid search on CYTO) feeding Section VI-C (CYTO SHD results)]
    "As an illustration, the grid search results on the CYTO dataset are shown in TABLE II. They are evaluated by the mean and standard deviation of rewards during training along with the average SHD of the final results. ... TRC-BIC and TRC-BIC2 surpass other methods on SynTReN by reaching the SHD of 35.0 and 34.9 respectively. They also achieve the hitherto best result on the protein dataset with the lowest SHD of 9 and 10 respectively."

    The (ε, δ) pair defining TRC's clipping rule is selected by grid search on CYTO (Table II evaluates average SHD on CYTO), and the same CYTO benchmark is then used to report the 'hitherto best result' SHD of 9/10. The reported number is therefore the best of several configurations tuned on that benchmark, i.e., a fitted performance estimate rather than an independent prediction. The reduction is not complete: the BIC-based reward and ground-truth SHD are external, so the result is not forced by construction, but the headline CYTO figure is partially self-evaluative.

full rationale

The algorithm's objective is the external BIC score (Eq. 4) and all benchmarks are external datasets with ground-truth graphs, so the reported SHD values are not equal by construction to any fitted parameter. The trust-region clipping rule (Eq. 19) is defined directly from the per-edge KL threshold; while the paper's claim that this bounds the joint ratio is mathematically unsupported (a correctness concern, not a circularity), the rule itself is not derived from the result it is used to explain. The only genuine circularity-adjacent issue is that Appendix A selects the (ε, δ) hyperparameters by grid search on the CYTO dataset and Section VI-C then reports TRC's CYTO SHD of 9/10 as a headline result, so this particular number carries a fitting component. This does not make the causal-discovery derivation circular, because the final graph still has to match external ground truth through the BIC reward.

Assumptions & free parameters 3 free parameters · 6 assumptions · 0 invented entities

The central claim rests on standard causal discovery assumptions, on a factorization of the policy into independent Bernoulli subactions, and on an unproved heuristic that per-subaction KL-triggered clipping preserves a joint trust region. The main free parameters are the clipping thresholds tuned per dataset.

free parameters (3)
  • epsilon and delta clipping thresholds = epsilon in {0.1, 0.2}; delta grid searched from 0.05 in steps of 0.015; final chosen pairs not stated globally
    Tuned per dataset in Appendix A; they directly determine TRC behavior in Equation 19, so reported benchmark results depend on them.
  • lambda1 and lambda2 penalty schedule = Table III lists Lambda1 upper bound 0, BICu for lambda2 as -1, Delta1=1, Delta2=10, tu=1000
    Hand-chosen schedule; Algorithm 4 and the prose describe additive and multiplicative updates inconsistently.
  • Score normalization constant BIC0 = not reported
    Algorithm 4 requires BIC0 to normalize the BIC score, but the value is not given in Table III, and reward scaling affects learning.
assumptions (6)
  • domain assumption Additive noise model with independent strictly positive-density noises
    Stated in Equation 2; synthetic experiments are generated under this model, but real CYTO and SynTReN data may not satisfy it.
  • domain assumption Markov and faithfulness assumptions
    Stated in Section III-A; without these, the true DAG is identifiable only up to Markov equivalence.
  • domain assumption BIC with linear, quadratic, or GP regression is a valid score
    Used as the reward signal; the regression choice must match the data model for the score to be meaningful.
  • domain assumption Policy factorization into independent Bernoulli subactions
    Used in Equation 3; the whole PPO and TRC aggregate-deviation argument depends on this factorization.
  • ad hoc to paper Per-subaction KL-triggered clipping preserves the joint trust region
    No proof is provided; this is the load-bearing heuristic behind TRC in Algorithm 3 and Equation 19.
  • standard math Zhu et al. condition in Equation 20 guarantees best-DAG optimality
    Relied on from prior work and not re-derived in this paper.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Graph-attention-based Casual Discovery with Trust Region-navigated Clipping Policy Optimization." pith.science (2026). https://pith.science/paper/TPKND6F3

@misc{pith2026241219578,
  author       = {Pith},
  title        = {Pith review of: Graph-attention-based Casual Discovery with Trust Region-navigated Clipping Policy Optimization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TPKND6F3}},
  note         = {Machine review of arXiv:2412.19578}
}
read the original abstract

In many domains of empirical sciences, discovering the causal structure within variables remains an indispensable task. Recently, to tackle with unoriented edges or latent assumptions violation suffered by conventional methods, researchers formulated a reinforcement learning (RL) procedure for causal discovery, and equipped REINFORCE algorithm to search for the best-rewarded directed acyclic graph. The two keys to the overall performance of the procedure are the robustness of RL methods and the efficient encoding of variables. However, on the one hand, REINFORCE is prone to local convergence and unstable performance during training. Neither trust region policy optimization, being computationally-expensive, nor proximal policy optimization (PPO), suffering from aggregate constraint deviation, is decent alternative for combinatory optimization problems with considerable individual subactions. We propose a trust region-navigated clipping policy optimization method for causal discovery that guarantees both better search efficiency and steadiness in policy optimization, in comparison with REINFORCE, PPO and our prioritized sampling-guided REINFORCE implementation. On the other hand, to boost the efficient encoding of variables, we propose a refined graph attention encoder called SDGAT that can grasp more feature information without priori neighbourhood information. With these improvements, the proposed method outperforms former RL method in both synthetic and benchmark datasets in terms of output results and optimization robustness.

Figures

Figures reproduced from arXiv: 2412.19578 by the authors.

Figure 2
Figure 2. Intuitive Training Illustration with REINFORCE [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 1
Figure 1. RL Paradigm for Causal Discovery The RL model for causal discovery is shown in [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 3
Figure 3. Scaled Dot-Product Graph Attention Network [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Empirical Results on Linear-Gaussian Data [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Empirical Results on LiNGAM Data (a) λ1 (b) λ2 (c) Batch Negative Reward [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Comparison of the Learning Process using Different RL Algorithms [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Behavioural Difference of TRC and PPO BIC1. Similar behavioural difference is observed when han￾dling nonlinear models and real-world data. We notice that, as shown in [PITH_FULL_IMAGE:figures/full_fig_p009_7.png]
Figure 8
Figure 8. Figure 8: Empirical Results on Non-linear Models with Quadratic Functions [PITH_FULL_IMAGE:figures/full_fig_p010_8.png]
Figure 9
Figure 9. Figure 9: Empirical Results on Non-linear Models with GP [PITH_FULL_IMAGE:figures/full_fig_p010_9.png]
Figure 10
Figure 10. Figure 10: Empirical Results on SynTReN (above, 20 nodes) and CYTO (below, 14 nodes) [PITH_FULL_IMAGE:figures/full_fig_p011_10.png]
Figure 11
Figure 11. Figure 11: Edge Discovery Results on CYTO [PITH_FULL_IMAGE:figures/full_fig_p011_11.png]
Figure 12
Figure 12. Figure 12: Evaluation of Results over Iterations on CYTO [PITH_FULL_IMAGE:figures/full_fig_p011_12.png]
Figure 13
Figure 13. Figure 13: Results using Different Encoders on CYTO [PITH_FULL_IMAGE:figures/full_fig_p012_13.png]
Figure 14
Figure 14. Figure 14: Bounds with Different δ TRC introduces a fundamental hyperparameter δ, and the tuning of (ϵ−δ) pairs becomes the concern. We tune the pairs TABLE II: Grid-search Results on CYTO Pairs ϵ = 0.1 ϵ = 0.2 Mean Std. SHD Mean Std. SHD δ = 0.02 -6.54 2.56 11.37 -6.19 2.71 11.…
Figure 15
Figure 15. Figure 15: Batch Rewards under Different Cases As there is no golden rule for baseline selection in current literature, we analyse the benefits of moving average with the experiment setting in VI-A under four cases: without baseline, with moving average baseline, with parametric…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

48 extracted references · 38 canonical work pages

  1. [1]

    ’virus and epidemic’: Causal knowledge activates prediction error circuitry,

    D. B. Fenker, M. A. Schoenfeld, M. R. Waldmann, H. Sch ¨utze, H. Heinze, and E. D ¨uzel, “’virus and epidemic’: Causal knowledge activates prediction error circuitry,” J. Cogn. Neurosci., vol. 22, no. 10, pp. 2151–2163, 2010

  2. [2]

    Causality for machine learning,

    B. Sch ¨olkopf, “Causality for machine learning,” CoRR, vol. abs/1911.10500, 2019

  3. [3]

    From correlation to causation networks: a simple approximate learning algorithm and its application to high-dimensional plant gene expression data,

    R. Opgen-Rhein and K. Strimmer, “From correlation to causation networks: a simple approximate learning algorithm and its application to high-dimensional plant gene expression data,” BMC Syst. Biol. , vol. 1, p. 37, 2007

  4. [5]

    Learning bayesian networks is np-complete,

    D. M. Chickering, “Learning bayesian networks is np-complete,” in Learning from Data - Fifth International Workshop on AISTATS 1995. Proceedings, D. Fisher and H. Lenz, Eds. Springer, 1995, pp. 121–130

  5. [6]

    Causal discovery with reinforcement learning,

    S. Zhu, I. Ng, and Z. Chen, “Causal discovery with reinforcement learning,” in 8th International Conference on Learning Representations, ICLR 2020. OpenReview.net, 2020

  6. [7]

    Estimating the Dimension of a Model,

    G. Schwarz, “Estimating the Dimension of a Model,” Annals of Statis- tics, vol. 6, no. 2, pp. 461–464, Jul. 1978

  7. [8]

    Simple statistical gradient-following algorithms for connectionist reinforcement learning,

    R. J. Williams, “Simple statistical gradient-following algorithms for connectionist reinforcement learning,” Mach. Learn. , vol. 8, pp. 229– 256, 1992

  8. [9]

    Policy gradient methods for reinforcement learning with function approxima- tion,

    R. S. Sutton, D. A. McAllester, S. P. Singh, and Y . Mansour, “Policy gradient methods for reinforcement learning with function approxima- tion,” in Advances in Neural Information Processing Systems 12 . The MIT Press, 1999, pp. 1057–1063

Show all 48 references
  1. [10]

    Trust region policy optimization,

    J. Schulman, S. Levine, P. Abbeel, M. I. Jordan, and P. Moritz, “Trust region policy optimization,” in Proceedings of the 32nd International Conference on Machine Learning, ICML 2015 , vol. 37. JMLR.org, 2015, pp. 1889–1897

  2. [11]

    Proximal policy optimization algorithms,

    J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov, “Proximal policy optimization algorithms,” CoRR, vol. abs/1707.06347, 2017

  3. [12]

    Graph attention networks,

    P. Velickovic, G. Cucurull, A. Casanova, A. Romero, P. Li `o, and Y . Bengio, “Graph attention networks,” CoRR, vol. abs/1710.10903, 2017

  4. [13]

    Approximating discrete probability distri- butions with dependence trees,

    C. K. Chow and C. N. Liu, “Approximating discrete probability distri- butions with dependence trees,” IEEE Trans. Inf. Theory, vol. 14, no. 3, pp. 462–467, 1968

  5. [14]

    The max-min hill- climbing bayesian network structure learning algorithm,

    I. Tsamardinos, L. E. Brown, and C. F. Aliferis, “The max-min hill- climbing bayesian network structure learning algorithm,” Mach. Learn., vol. 65, no. 1, pp. 31–78, 2006

  6. [15]

    Dags with NO TEARS: continuous optimization for structure learning,

    X. Zheng, B. Aragam, P. Ravikumar, and E. P. Xing, “Dags with NO TEARS: continuous optimization for structure learning,” in NeurIPS 2018, 2018, pp. 9492–9503

  7. [16]

    Generalized score functions for causal discovery,

    B. Huang, K. Zhang, and Y . Lin, “Generalized score functions for causal discovery,” in Proceedings of the 24th ACM SIGKDD . ACM, 2018, pp. 1551–1560

  8. [17]

    Causal discovery with continuous additive noise models,

    J. Peters, J. M. Mooij, D. Janzing, and B. Sch ¨olkopf, “Causal discovery with continuous additive noise models,” J. Mach. Learn. Res. , vol. 15, no. 1, pp. 2009–2053, 2014

  9. [18]

    A machine learning approach to classify pedestrians’ event based on imu and gps,

    M. U. Ahmed, S. Brickman, A. Dengg, N. Fasth, M. Mihajlovi ´c, and J. D. Norman, “A machine learning approach to classify pedestrians’ event based on imu and gps,” 2019

  10. [19]

    Deep learning versus traditional solutions for group trajectory outliers,

    A. Belhadi, Y . Djenouri, D. Djenouri, T. Michalak, and J. C. W. Lin, “Deep learning versus traditional solutions for group trajectory outliers,” IEEE Transactions on Cybernetics , pp. 1–12, 2020

  11. [20]

    Iterative feedback and learning control. servo systems applications,

    S. Preitl, R.-E. Precup, P. Zsuzsa, S. Vaivoda, S. Kilyeni, and J. Tar, “Iterative feedback and learning control. servo systems applications,” IFAC Proceedings Volumes (IFAC-PapersOnline), vol. 1, pp. 16–27, 01 2007

  12. [21]

    Adaptive ekf-based vehicle state estimation with online assessment of local observability,

    A. Katriniok and D. Abel, “Adaptive ekf-based vehicle state estimation with online assessment of local observability,” IEEE Trans. Control. Syst. Technol., vol. 24, no. 4, pp. 1368–1381, 2016

  13. [22]

    Learning functional causal models with generative neural networks,

    O. Goudet, D. Kalainathan, P. Caillou, I. Guyon, D. Lopez-Paz, and M. Sebag, “Learning functional causal models with generative neural networks,” Sep. 2017

  14. [23]

    Structural Agnostic Modeling: Adversarial Learning of Causal Graphs,

    D. Kalainathan, O. Goudet, I. Guyon, D. Lopez-Paz, and M. Sebag, “Structural Agnostic Modeling: Adversarial Learning of Causal Graphs,” arXiv e-prints, Mar. 2018

  15. [24]

    DAG-GNN: DAG structure learning with graph neural networks,

    Y . Yu, J. Chen, T. Gao, and M. Yu, “DAG-GNN: DAG structure learning with graph neural networks,” in ICML 2019, 2019

  16. [25]

    A new model for learning in graph domains,

    M. Gori, G. Monfardini, and F. Scarselli, “A new model for learning in graph domains,” in IEEE International Joint Conference on Neural Networks, 2005, vol. 2, 2005, pp. 729–734 vol. 2

  17. [26]

    The graph neural network model,

    F. Scarselli, M. Gori, A. C. Tsoi, M. Hagenbuchner, and G. Monfardini, “The graph neural network model,” IEEE Trans. Neural Networks , vol. 20, no. 1, pp. 61–80, 2009. IEEE TRANSACTIONS ON CYBERNETICS 14

  18. [27]

    Chebnet: Efficient and stable constructions of deep neural networks with rectified power units using chebyshev approximations,

    S. Tang, B. Li, and H. Yu, “Chebnet: Efficient and stable constructions of deep neural networks with rectified power units using chebyshev approximations,” CoRR, vol. abs/1911.05467, 2019

  19. [28]

    Inductive representation learning on large graphs,

    W. L. Hamilton, R. Ying, and J. Leskovec, “Inductive representation learning on large graphs,” CoRR, vol. abs/1706.02216, 2017

  20. [29]

    Deep reinforcement learning for multiagent systems: A review of challenges, solutions, and applications,

    T. T. Nguyen, N. D. Nguyen, and S. Nahavandi, “Deep reinforcement learning for multiagent systems: A review of challenges, solutions, and applications,” IEEE Transactions on Cybernetics , vol. 50, no. 9, pp. 3826–3839, 2020

  21. [30]

    Survey of model-based reinforce- ment learning: Applications on robotics,

    A. S. Polydoros and L. Nalpantidis, “Survey of model-based reinforce- ment learning: Applications on robotics,” J. Intell. Robotic Syst., vol. 86, no. 2, pp. 153–173, 2017

  22. [31]

    Online rein- forcement learning control for the personalization of a robotic knee prosthesis,

    Y . Wen, J. Si, A. Brandt, X. Gao, and H. H. Huang, “Online rein- forcement learning control for the personalization of a robotic knee prosthesis,” IEEE Transactions on Cybernetics, vol. 50, no. 6, pp. 2346– 2356, 2020

  23. [32]

    Multitask learning for object localization with deep reinforcement learning,

    Y . Wang, L. Zhang, L. Wang, and Z. Wang, “Multitask learning for object localization with deep reinforcement learning,” IEEE Trans. Cogn. Dev. Syst., vol. 11, no. 4, pp. 573–580, 2019

  24. [33]

    Nonzero-sum game rein- forcement learning for performance optimization in large-scale industrial processes,

    J. Li, J. Ding, T. Chai, and F. L. Lewis, “Nonzero-sum game rein- forcement learning for performance optimization in large-scale industrial processes,” IEEE Transactions on Cybernetics, vol. 50, no. 9, pp. 4132– 4145, 2020

  25. [34]

    Neural Architecture Search with Reinforcement Learning,

    B. Zoph and Q. V . Le, “Neural Architecture Search with Reinforcement Learning,” arXiv e-prints,, Nov. 2016

  26. [35]

    K. A. Bollen, Structural Equations with Latent Variables. Wiley, 1989

  27. [36]

    Spirtes, C

    P. Spirtes, C. Glymour, and R. Scheines, Causation, Prediction, and Search, Second Edition , ser. Adaptive computation and machine learn- ing. MIT Press, 2000

  28. [37]

    A linear non-gaussian acyclic model for causal discovery,

    S. Shimizu, P. O. Hoyer, A. Hyv ¨arinen, and A. J. Kerminen, “A linear non-gaussian acyclic model for causal discovery,” J. Mach. Learn. Res. , vol. 7, pp. 2003–2030, 2006

  29. [38]

    On the Prop- erties of Neural Machine Translation: Encoder-Decoder Approaches,

    K. Cho, B. van Merrienboer, D. Bahdanau, and Y . Bengio, “On the Prop- erties of Neural Machine Translation: Encoder-Decoder Approaches,” arXiv e-prints,, Sep. 2014

  30. [39]

    Abstractive Text Summarization Using Sequence-to-Sequence RNNs and Beyond,

    R. Nallapati, B. Zhou, C. Nogueira dos santos, C. Gulcehre, and B. Xi- ang, “Abstractive Text Summarization Using Sequence-to-Sequence RNNs and Beyond,” arXiv e-prints,, Feb. 2016

  31. [40]

    Function optimization using connectionist reinforcement learning algorithms,

    R. J. Williams and J. Peng, “Function optimization using connectionist reinforcement learning algorithms,” Connection Science, vol. 3, pp. 241– 268, 1991

  32. [41]

    Prioritized Experience Replay,

    T. Schaul, J. Quan, I. Antonoglou, and D. Silver, “Prioritized Experience Replay,” arXiv e-prints,, Nov. 2015

  33. [42]

    Are deep policy gradient algorithms truly policy gradient algorithms?

    A. Ilyas, L. Engstrom, S. Santurkar, D. Tsipras, F. Janoos, L. Rudolph, and A. Madry, “Are deep policy gradient algorithms truly policy gradient algorithms?” CoRR, vol. abs/1811.02553, 2018

  34. [43]

    Ramsey, M

    J. Ramsey, M. Glymour, R. Sanchez-Romero, and C. Glymour, “A mil- lion variables and more: the fast greedy equivalence search algorithm for learning high-dimensional graphical causal models, with an application to functional magnetic resonance images,” Int. J. Data Sci. Anal.,...

  35. [44]

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

    P. B ¨uhlmann, J. Peters, and J. Ernest, “CAM: causal additive models, high-dimensional order search and penalized regression,” CoRR, vol. abs/1310.1533, 2013

  36. [45]

    Gradient- based neural DAG learning,

    S. Lachapelle, P. Brouillard, T. Deleu, and S. Lacoste-Julien, “Gradient- based neural DAG learning,” CoRR, vol. abs/1906.02226, 2019

  37. [46]

    Causal Protein-Signaling Networks Derived from Multiparam- eter Single-Cell Data,

    K. Sachs, O. Perez, D. Pe’er, D. A. Lauffenburger, and G. P. Nolan, “Causal Protein-Signaling Networks Derived from Multiparam- eter Single-Cell Data,” Science, vol. 308, no. 5721, pp. 523–529, Apr. 2005

  38. [47]

    Syntren: a generator of synthetic gene expression data for design and analysis of structure learning algorithms,

    T. V . den Bulcke, K. V . Leemput, B. Naudts, P. van Remortel, H. Ma, A. Verschoren, B. D. Moor, and K. Marchal, “Syntren: a generator of synthetic gene expression data for design and analysis of structure learning algorithms,” BMC Bioinform., vol. 7, p. 43, 2006

  39. [48]

    Truly proximal policy optimization,

    Y . Wang, H. He, and X. Tan, “Truly proximal policy optimization,” in UAI 2019 , ser. Proceedings of Machine Learning Research, vol. 115. AUAI Press, pp. 113–122

  40. [49]

    A hybrid method for nonlinear equations,

    M. J. D. Powell, “A hybrid method for nonlinear equations,” in Nu- merical Methods for Nonlinear Algebraic Equations , P. Rabinowitz, Ed. Gordon and Breach, 1970. Shixuan Liu received the B.S. degree in Systems Engineering in 2019 from National University of Defense Technology...

Pith tools

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