Pith. sign in

REVIEW 4 major objections 4 minor 16 references

Tagged for Direction: Pinning Down Causal Edge Directions with Precision

T0 review · 4 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read Tagging variables with several high-level concepts and counting how often each tag pair points one way on already-directed edges orients the remaining edges better than single-type priors or standard causal discovery.

desk verdict A genuinely useful multi-tag extension of type-based causal discovery whose headline claim over typing is undercut by a missing same-base baseline and test-set selection. read the letter →

arxiv 2506.19459 v1 pith:F4BLUW32 submitted 2025-06-24 cs.LG cs.AI

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

Observational causal discovery can usually identify a causal graph only up to Markov equivalence, leaving many edges undirected. This paper claims that direction statistics over semantic tags can break that deadlock: after a base algorithm such as PC or GES produces a partially directed graph, counting how often each pair of high-level tags points one way on the already-directed edges yields a prior for orienting the edges that remain. The paper shows experimentally, on eleven benchmarks with tags supplied by language models, that this tag-based transfer improves over the base algorithms and over single-type approaches, with the GES-based variant ranking best on most metrics. It also argues that the same tag statistics can be read in reverse, mining abstract causal relations between concepts that match common knowledge. The reason to care is practical: this is a way to use cheap, common-sense annotation to pin down directions that pure data cannot decide, without requiring interventions.

What carries the argument

The load-bearing object is the tag informative value, $I^Y(t_a,t_b)$, the empirical probability over edges $E_{Y,t_a,t_b}$ that an edge connecting a $t_a$-tagged variable to a $t_b$-tagged variable points from the $t_a$ side to the $t_b$ side. Direction evidence for a candidate edge $X_i\to X_j$ is the average preference $Q(E_{ij})=\frac{1}{n}\sum_{(t_a,t_b)\in t_i\times t_j}\hat{p}_{ab}\,o(t_a,t_b)$, where $\hat{p}_{ab}$ estimates the informative value from the count matrix $C_{ab}$ of directed edges, $o$ filters tag pairs with no observed evidence, and the decision boundary sits at $0.5$ with an abstention band of width $2\epsilon$. The paper's supporting theory models the informative values as draws from a $\beta$ distribution and shows, via the central limit theorem, that the variance of the averaged prediction, $\mathrm{Var}[d'^Y_{ij}] = \alpha\beta/((\alpha+\beta)^2(\alpha+\beta+1)n)$, falls as the number $n=|t_i\times t_j|$ of tag pairs grows, so more tags, or tags shared by more variables, sharpen the direction estimate. Around this core, the algorithm greedily picks the edge with the most decisive preference, enforces acyclicity, and applies Meek rules after each orientation, so each directed edge propagates further constraints before the next choice.

What would settle it

Build a two-region benchmark in the same style as the paper's: in region A, 80% of edges between a $t_a$-tagged and a $t_b$-tagged variable point $t_a\to t_b$, while in region B the same tag pair points $t_b\to t_a$ with 80%. Arrange the base CPDAG so the directed edges fall almost entirely in region A and the undirected edges almost entirely in region B, run the tag-statistic transfer, and measure the orientation accuracy in region B. Assumption 1 predicts the informative values converge; if region B accuracy lands at or below chance (0.5), the transfer step — not the counting — is what fails, and the assumption is violated in exactly the settings the method is meant for.

Watch

Extended reading notes

Core claim

The authors' central claim is that the causal direction of an undirected edge is predictable from the statistical relationship between the tags carried by its two endpoints, provided those statistics are collected from the directed edges of a completed partially directed acyclic graph (CPDAG), the equivalence-class summary that base algorithms like PC and GES return. Formally, they define a tag informative value $I^Y(t_a,t_b)$: the fraction of directed edges in the graph whose endpoints carry tags $t_a$ and $t_b$ that point from the $t_a$-variable to the $t_b$-variable. A still-undirected edge with tag sets $t_i$ and $t_j$ is then directed by averaging these values over all tag pairs $(t_a,t_b)\in t_i\times t_j$; if the average is above $0.5+\epsilon$ the edge is set to $X_i\to X_j$, if below $0.5-\epsilon$ to $X_j\to X_i$, and otherwise the method abstains. On eleven benchmark networks, with tags generated by several large language models, the procedure applied on top of GES consistently ranked best across all compared methods and metrics, the exceptions being metrics that reward leaving edges undirected, and the tag relations extracted from the ground-truth graphs turned out to be semantically coherent, such as 'Alarm Trigger' → 'Response' and 'Vehicle Attributes' → 'Safety Features'. The paper presents this as evidence that the assumption that directed and undirected edges share the same tag statistics, while often not directly checkable, holds in practice for homogeneous domains.

Load-bearing premise

The method's load-bearing premise is that undirected edges obey the same tag-direction statistics as the already-directed edges they are inferred from, a condition the paper concedes can usually not be checked in practice.

Editorial extensions

If this is right

  • Applied on top of GES, the tagging procedure ranks first among all compared methods on average across every metric that rewards correct direction decisions, so users of score-based discovery can tighten their partially directed graphs without collecting new data.
  • Because the method improves both PC and GES outputs, it functions as a general post-processing layer for any algorithm that returns a CPDAG, requiring only tag annotations for the variables.
  • Directing edges with tag statistics demonstrably shrinks the Markov equivalence class of the initial CPDAG toward the ground truth, meaning background knowledge expressed as tags can break equivalence where interventional data would otherwise be required.
  • The variance analysis implies that the advantage of tags over single types grows with the number of tag pairs per edge, which the experiments confirm by showing larger gains on larger datasets, where single-type evidence is too sparse.
  • The tag relations mined from the ground-truth networks, such as 'Alarm Trigger' → 'Response' and 'Vehicle Attributes' → 'Safety Features', are highly homogeneous and match common knowledge, so the same procedure doubles as a way to extract abstract causal statements from a known graph.

Reading between the lines

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

  • My read: the method is a transfer-learning prior in disguise, where the tag informative value is an empirical prior whose weight is set by how many directed edges support it, so the same averaging machinery could combine any sources of direction evidence, including additive-noise scores, interventional labels, or expert statements, into one preference score.
  • I read the abstention band around 0.5 as an uncalibrated confidence lever: with per-tag-pair thresholds, a practitioner could guarantee a minimum precision on the edges the method chooses to direct, turning the post-processing pass into a safe procedure for high-stakes settings.
  • Because the paper shows that tags produced by different language models perform nearly identically, I suspect the gain comes from the aggregation mechanism rather than the vocabulary; scrambling or randomising the tag sets would test this directly.
  • A two-region graph with opposite tag-direction statistics is the cleanest boundary probe: if the method's accuracy there falls to chance, it has located precisely where tag statistics stop transferring.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 4 minor

Summary. The paper proposes a tag-based causal discovery method. Variables are annotated with multiple tags (e.g., by an LLM); from a CPDAG produced by a base algorithm (PC or GES), the method counts, for each ordered pair of tags, how often directed edges point in each direction (Eqs. (3)-(4)), and then orients each remaining undirected edge by the average of these tag-pair statistics, with abstention and optional Meek-rule application (Eq. (5), Algorithm 2). The paper reports experiments on 11 bnlearn datasets and LUCAS, over 5 LLMs and 400 configurations, claiming that the approach improves on PC, GES, and the single-type method of Brouillard et al. (2022), and that the extracted high-level tag relations correspond to common knowledge.

Significance. If the central claim were established, the contribution would be a practical, low-cost way to use LLM background knowledge to reduce the Markov equivalence class, generalizing type consistency to multiple tags and avoiding the brittleness of single-type assignments. The paper is commendable for releasing code, running an extensive configuration sweep, and including ablation studies on graph faults and noisy tags; the idea of mining tag-level causal relations from ground-truth graphs is also interesting. However, the central comparison against type-based methods is currently confounded with the base algorithm and with test-data model selection, so the magnitude of the claimed improvement is not yet demonstrated.

major comments (4)
  1. [§4.1, Table 1] The paper's central claim that tagging improves upon purely type-based relations is not supported by the reported experiments because no Typed-GES baseline appears in Table 1. Typing is evaluated only on top of PC (Typed-PC Naive and Typed-PC Maj.), whereas tagging is evaluated on both PC and GES, so the tag-versus-type comparison is confounded with the base algorithm. The only same-base comparison available, Tagged-PC versus Typed-PC, actually favors Typed-PC on average ranks (2.61 versus 2.46 in Table 1), and Table 4 shows Typed-PC often better on smaller datasets. Without a Typed-GES condition, the headline that Tagged-GES 'consistently ranks best' cannot be attributed to tagging rather than to the stronger GES base.
  2. [§4.1, Tables 2 and 4] The best configuration is selected on the test data: Section 4.1 states that the best-performing configuration is identified by the average F1 over all datasets and seeds, and the caption of Table 4 says that for each method the configuration (including the LLM) that performed best for itself was chosen. This means the tagged rows are test-data-optimized while the PC and GES baselines are not, and it also makes the Tagged-PC/Tagged-GES comparison depend on each variant's own selected settings. The ranks in Table 1 are therefore optimistically biased, and the claimed improvement over the baselines needs a fair protocol (e.g., selection on a validation split, or a fixed configuration chosen before seeing the test results).
  3. [§3, Assumption 1] The method rests entirely on Assumption 1 (Tag Distribution Consistency), which the authors state 'can usually not be checked in practice' and which 'might be violated when scaling to larger systems.' Because the benchmark data come with ground-truth graphs, a direct check is feasible: the tag informative values estimated from the directed edges of the recovered CPDAG can be compared with those computed from the true directions of the edges that were undirected. I ask for such a diagnostic (or a synthetic experiment that controls the degree of distribution mismatch), since without it the empirical claims are limited to settings where the transfer assumption happens to hold.
  4. [App. A, Eqs. (7)-(12)] The variance-reduction argument treats the tag informative values I^Y_m as independent draws from a common Beta distribution, but these values are computed from the same set of directed edges and are therefore not independent, so the Central Limit Theorem does not apply as stated. The argument also sets the edge-specific noise N_ij to zero even though Eq. (2) introduces it; consequently the conclusion in Sec. 3.1 that predictions become perfect as the number of tag pairs grows does not follow. The derivation should be presented as heuristic motivation, with the independence and noise assumptions made explicit.
minor comments (4)
  1. [App. A, Eq. (9)] In Eq. (9), the summation uses I^Y_n inside the sum over m; this should be I^Y_m (or the index renamed) to avoid confusion with the outer n.
  2. [§3, Eqs. (3)-(4)] Please clarify how counts are handled when both tags of a pair appear in the tag sets of both endpoints of an edge; in that case a single directed edge can increment both C_ab and C_ba, and one would need to explain why p-hat_ab + p-hat_ba can be treated as a probability.
  3. [App. C, Algorithm 2] In Algorithm 2 (and the helper in Algorithm 1), the variable BackwardProb is used before it is defined; line 42 sets BackwardProb←1−BackwardProb, which should presumably read BackwardProb←1−ForwardProb. Please correct the pseudocode.
  4. [§4.1 / Table 1] The caption of Table 1 notes that SIDmin treats undirected and correctly directed edges identically, but the same caveat applies to Precision; the sentence in the caption is incomplete as written.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: tag statistics are estimated from directed edges and transferred to undirected edges under an explicit consistency assumption; no predicted quantity is identical by construction to the fitted input.

full rationale

The paper's derivation chain is not circular in the sense defined here. The tag informative value (Def. 1) and its estimator (Eq. 4, p_ab = C_ab/(C_ab+C_ba)) are computed only from already directed edges of the CPDAG. The undirected edges are then oriented by Eq. 5, which averages these tag-pair statistics; the edge being oriented is not itself included in the evidence (Alg. 1, Alg. 2, and the optional IncludeCurrentEdgeAsEvidence parameter make this explicit). The transfer from directed to undirected edges rests on Assumption 1 (Tag Distribution Consistency), which the authors explicitly state cannot usually be checked and may fail on larger systems. This is a substantive modelling assumption, not a hidden identity: nothing in the definitions forces the undirected-edge statistics to equal the directed-edge statistics. The theoretical analysis in App. A is also conditional and transparent: it assumes the tag informative values follow a beta distribution and, following Assumption 1, assumes alpha > beta for a true X_i -> X_j edge; the conclusion that more tag pairs reduce variance and improve accuracy is a corollary of those explicit assumptions, not a restatement of the method's output as its input. The self-citations in the paper (Zecevic et al. 2023, Keshmirian et al. 2024) appear only in related-work context and are not load-bearing for the main claim. The claimed advantage over purely type-based relations is weakened experimentally by the absence of a Typed-GES baseline and by selecting the best configuration (including LLM) on the test F1, but those are evaluation-design concerns, not circular-derivation concerns. Since the derivation is self-contained and the key transfer step is an openly stated assumption, the appropriate circularity score is 0.

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

The paper introduces no new physical or ontological entities. Tags are user-supplied metadata generated by LLMs, and the tag informative value is a statistical summary of directed edges, not a postulated entity. The load-bearing elements are the explicit distribution-consistency assumption and the choice of hyperparameters.

free parameters (7)
  • epsilon (abstention threshold) = not specified (rule uses Q = 0.5 in Alg. 2)
    Introduced in Sec. 3 as a small positive value, but the implemented decision rule in Algorithm 2 abstains only at exactly Q = 0.5.
  • Min-Samples (evidence threshold) = 1 (best)
    Hyperparameter for how many tag pairs must have observed evidence; selected by average F1 across datasets.
  • Fewer Tags (singleton tag filtering) = False (include singletons, best)
    Boolean hyperparameter controlling whether tags assigned to only one variable are removed.
  • Specificity Prior = False (best)
    Optional prior from Eq. 13; authors found no empirical improvement and the best configuration disables it.
  • Always Meek = True (best)
    Whether to apply Meek rules after each edge direction step or only at the end.
  • Redirect = False (best)
    Whether to redirect existing directed edges with low confidence; authors report no clear evidence for or against.
  • LLM choice for tags/types = GPT-4 for Tagged-GES; Claude-3.5 Sonnet for Typed-PC
    For each method the LLM that performed best on test F1 was chosen, which is a form of test-data model selection.
assumptions (5)
  • domain assumption Assumption 1: Tag Distribution Consistency
    Sec. 3, Assumption 1: tag informative values from directed and undirected edge populations converge; required to transfer statistics, admitted to be unchecked in practice.
  • domain assumption Standard causal discovery assumptions inherited from PC/GES
    Base CPDAGs from PC/GES rely on causal sufficiency and faithfulness; the paper does not test hidden confounders or selection bias.
  • domain assumption LLM-generated tags are semantically discriminative for causal direction
    The method's utility depends on tags correlating with actual causal direction; tested indirectly through experiments and robustness to tag noise.
  • ad hoc to paper Tag informative values follow a Beta distribution for the theoretical variance analysis
    App. A makes this distributional assumption for the CLT variance derivation; it is not empirically validated and is not needed for the algorithm itself.
  • domain assumption The CPDAG skeleton is trusted and errors are mild
    The algorithm only orients edges and never adds or removes edges; robustness experiments probe the consequences of violating this assumption.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Tagged for Direction: Pinning Down Causal Edge Directions with Precision." pith.science (2026). https://pith.science/paper/F4BLUW32

@misc{pith2026250619459,
  author       = {Pith},
  title        = {Pith review of: Tagged for Direction: Pinning Down Causal Edge Directions with Precision},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/F4BLUW32}},
  note         = {Machine review of arXiv:2506.19459}
}
read the original abstract

Not every causal relation between variables is equal, and this can be leveraged for the task of causal discovery. Recent research shows that pairs of variables with particular type assignments induce a preference on the causal direction of other pairs of variables with the same type. Although useful, this assignment of a specific type to a variable can be tricky in practice. We propose a tag-based causal discovery approach where multiple tags are assigned to each variable in a causal graph. Existing causal discovery approaches are first applied to direct some edges, which are then used to determine edge relations between tags. Then, these edge relations are used to direct the undirected edges. Doing so improves upon purely type-based relations, where the assumption of type consistency lacks robustness and flexibility due to being restricted to single types for each variable. Our experimental evaluations show that this boosts causal discovery and that these high-level tag relations fit common knowledge.

Figures

Figures reproduced from arXiv: 2506.19459 by the authors.

Figure 1
Figure 1. Tags Inform About Causal Relations: We predict the causal direc￾tion of undirected edges by taking tags of variables into account. Background knowledge on how tags relate to each other helps predict edge directions. The recovery of causal relations from data has been a long-standing area of research interest [Guo et al., 2020, Schölkopf et al., 2021, Schölkopf, 2022]. Over the years, several methods with varying ass… view at source ↗
Figure 2
Figure 2. Tag-Supported Causal Discovery. The figure illustrates the tagging-based causal discovery described in this paper: First, a causal discovery algorithm such as PC or GES is used to obtain a CPDAG. Variables are tagged with semantically meaningful tags, for example, by using an LLM. Lastly, tag relations on the CPDAG are used to predict the direction of undirected edges. When reasoning over the causal relations that a… view at source ↗
Figure 3
Figure 3. Connectivity of Edge Di￾rections. The figure shows the as￾sumed general relation between tag￾gings sets and edges: variables Xi and Xj determine the general exis￾tence of an edge Eij , with the result￾ing edge direction dij being deter￾mined via tagging sets ti , tj and an edge specific noise factor Nij . In one such approach, Brouillard et al. [2022] assigns types to variables to gather statistics based on the alre… view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Accuracy with Errors in the Graph. Tags generated by GPT-4. Removing edges decreases performance only slightly, whereas inverting edges has a stronger nega￾tive impact on prediction accuracy. The effect is even more pronounced in small datasets. See App. E.6 for all LL…
Figure 5
Figure 5. Figure 5: Top: Tag Homogeneity for GPT4. A tag relation has high homogeneity (1) if variables of one tag consistently cause the other and low homogeneity (0) if the cause-effect relationship between these variables is random. We observe high homogeneity throughout all datasets. …
Figure 6
Figure 6. Figure 6: Accuracy with Noisy Tags. Tagging predicts the correct edge direction more often than not even with high error percentages. Results are fluctuating strongly, as the number of underlying data points can be very small. 24 [PITH_FULL_IMAGE:figures/full_fig_p024_6.png]
Figure 7
Figure 7. Figure 7: Accuracy with Errors in the Graph. Tags were generated by the respective LLM. We can see the same general patterns as for GPT-4 for the other LLMs, where removed edges decrease prediction accuracy slightly while adding errors impacts performance more strongly. Smaller …
Figure 8
Figure 8. Figure 8: Tag Homogeneity for all LLMs. A tag relation has high homogeneity (1) if variables of one tag consistently cause the other and low homogeneity (0) if the cause-effect relationship between these variables is random. We observe high homogeneity throughout all datasets. H…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

16 extracted references · 8 canonical work pages

  1. [1]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774,

  2. [2]

    Llama-3.3-70B-Instruct

    14 Algorithm 1Tagging Helper Procedures 1:procedureCOLLECTEVIDENCE(G,t) 2:E←zero matrix of size|t|×|t| 3:foreach directed edge(u,v)∈Gdo 4:foreach tagt u∈t[u]do 5:foreach tagt v∈t[v]do 6:E[t u,tv]←E[t u,tv] + 1 7:end for 8:end for 9:end for 10:returnE 11:end procedure 12:procedureFINDMOSTPROMISINGEDGE(Edges,t,E, OnlyBackward) 13:BestEdge←None 14:BestProb←0...

  3. [6]

    Llms are prone to fallacies in causal inference.arXiv preprint arXiv:2406.12158,

    Nitish Joshi, Abulhair Saparov, Yixin Wang, and He He. Llms are prone to fallacies in causal inference.arXiv preprint arXiv:2406.12158,

  4. [7]

    Causal reasoning and large language models: Opening a new frontier for causality.arXiv preprint arXiv:2305.00050,

    Emre Kıcıman, Robert Ness, Amit Sharma, and Chenhao Tan. Causal reasoning and large language models: Opening a new frontier for causality.arXiv preprint arXiv:2305.00050,

  5. [8]

    Can large language models build causal graphs? InNeurIPS 2022 Workshop on Causality for Real-world Impact

    Stephanie Long, Tibor Schuster, and Alexandre Piché. Can large language models build causal graphs? InNeurIPS 2022 Workshop on Causality for Real-world Impact. Stephanie Long, Alexandre Piché, Valentina Zantedeschi, Tibor Schuster, and Alexandre Drouin. Causal discovery with language models as imperfect experts. InICML 2023 Workshop on Struc- tured Probab...

  6. [9]

    Structured Priors for Structure Learning

    Vikash Mansinghka, Charles Kemp, Thomas Griffiths, and Joshua Tenenbaum. Structured priors for structure learning.arXiv preprint arXiv:1206.6852,

  7. [10]

    11 Judea Pearl.Causality

    Accessed: 2025-02-09. 11 Judea Pearl.Causality. Cambridge university press,

  8. [12]

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al

    URLhttps://erdogant.github.io/bnlearn. Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models.arXiv preprint arXiv:2302.13971,

Show all 16 references
  1. [13]

    Can large language models distinguish cause from effect? InUAI 2022 Workshop on Causal Representation Learning,

    LYU Zhiheng, Zhijing Jin, Rada Mihalcea, Mrinmaya Sachan, and Bernhard Schölkopf. Can large language models distinguish cause from effect? InUAI 2022 Workshop on Causal Representation Learning,

  2. [15]

    4, where we show the unranked evaluation results per dataset

    We now include the detailed results in Tab. 4, where we show the unranked evaluation results per dataset. Here, we also include some steps oft-Propagationas proposed in Brouillard et al. [2022]. However, we were unable to apply the last step oft-Propagation, where all type-con...

  3. [16]

    To this end, we use the ground-truth graphs and undirect 1 to 6 edges

    E.4 Directing of Undirected Edges We conduct an additional experiment to investigate how our approach manages to direct undirected edges in settings without errors. To this end, we use the ground-truth graphs and undirect 1 to 6 edges. In the same manner as in Sec. 4.2, we eit...

  4. [2002]

    Lmpriors: Pre-trained language models as task-specific priors.arXiv preprint arXiv:2210.12530,

    Kristy Choi, Chris Cundy, Sanjari Srivastava, and Stefano Ermon. Lmpriors: Pre-trained language models as task-specific priors.arXiv preprint arXiv:2210.12530,

  5. [2009]

    Interpreting and using cpdags with background knowledge.arXiv preprint arXiv:1707.02171,

    Emilija Perkovi´c, Markus Kalisch, and Maloes H Maathuis. Interpreting and using cpdags with background knowledge.arXiv preprint arXiv:1707.02171,

  6. [2020]

    Large language models are not strong abstract reasoners.arXiv preprint arXiv:2305.19555,

    10 Gaël Gendron, Qiming Bao, Michael Witbrock, and Gillian Dobbie. Large language models are not strong abstract reasoners.arXiv preprint arXiv:2305.19555,

  7. [2023]

    Efficient causal graph discovery using large language models.arXiv preprint arXiv:2402.01207,

    Thomas Jiralerspong, Xiaoyin Chen, Yash More, Vedant Shah, and Yoshua Bengio. Efficient causal graph discovery using large language models.arXiv preprint arXiv:2402.01207,

  8. [2024]

    Accessed: 2025-02-09

    URL https://www.anthropic.com/news/ claude-3-5-sonnet. Accessed: 2025-02-09. Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report.arXiv preprint arXiv:2309.16609,

Pith tools

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