REVIEW 3 major objections 5 minor 2 cited by
Extracting Probabilistic Knowledge from Large Language Models for Bayesian Network Parameterization
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read LLM probability guesses can serve as expert priors for Bayesian networks.
desk verdict A useful empirical benchmark for LLM-derived probability priors in Bayesian networks, but missing significance tests and a real memorization confound keep it from being conclusive. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the pairing of a prompting scheme with a pseudocount update. SepState asks the LLM one question per state of a node, conditioned on a fixed parent configuration, has the model reason aloud, and normalizes the returned values so they sum to one; FullDist instead requests the whole tuple in one answer, which the paper finds less accurate in 7 of 8 models. The EDP estimator then treats the normalized LLM output $q_1,\dots,q_m$ as a prior: each $q_i$ is converted into $\alpha q_i$ virtual observations and mixed with empirical counts $c_i$ via $p_i = (\alpha q_i + c_i)/(\alpha + \sum_j c_j)$, with $\alpha$ controlling how much the model is trusted relative to data. The argument depends on evaluating these outputs against published ground-truth conditional probability tables using KL divergence.
What would settle it
Re-run the SepState and EDP evaluations on networks whose source papers appeared after the LLM's training cutoff, or whose node descriptions are paraphrased so no original parameter values are recoverable; if the estimates collapse toward the uniform baseline in that setting, the 'probabilistic knowledge' interpretation would be refuted in favor of memorization.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that LLM-generated conditional probabilities are genuinely informative about real-world event relationships, not just fluent guesses. Across 80 discrete Bayesian networks with known ground-truth parameters, the SepState prompting scheme, which asks one question per state and normalizes the answers, produces joint distributions with lower Bayesian-network KL divergence than the uniform prior, random numbers, and raw next-token probabilities, in every non-reasoning model tested. Separating the estimates into a prior and fusing them with empirical counts as $\alpha q_i$ pseudocounts gives the EDP estimator, which improves on maximum likelihood and on uniform-prior smoothing at small sample sizes and still helps at moderate sizes; the accuracy gain carries over to downstream classification, where EDP matches or beats data-only estimation in most settings and at every data size under a naive-Bayes structure. The authors frame this as establishing the first broad benchmark for LLM probabilistic knowledge extraction, using full distributions over multi-state nodes rather than single confidence numbers.
Load-bearing premise
The load-bearing premise is that the model's probability estimates come from general learned knowledge of the world, not from having memorized the exact parameters of the eighty test networks; the prompts are built from the papers that define those networks.
Editorial extensions
If this is right
- With as few as 3 data samples, EDP with an LLM prior achieves lower Bayesian-network KL divergence than maximum likelihood trained on 30 samples and than the LLM's raw SepState estimates.
- EDP remains beneficial at moderate sample sizes, such as 1,000 samples, by shrinking variance and improving median KL divergence; maximum likelihood only wins at very large sample sizes under unbiased sampling.
- On nine classification datasets, EDP beats or ties MLE in low-resource regimes across both Hill Climbing and naive-Bayes structures, and matches or edges out MLE in 12 of 18 full-data cases.
- SepState is the recommended extraction scheme when accuracy matters, while FullDist trades accuracy for fewer queries.
- Reasoning-focused models estimate probabilities less well than their non-reasoning counterparts, so more chain-of-thought reasoning does not automatically produce better priors.
Reading between the lines
- If the LLM's advantage comes from memorizing the papers that define the test networks rather than from general domain knowledge, the EDP gains would shrink for networks and parameter tables published after the model's training cutoff; this is testable by withholding the source papers when building node descriptions.
- The same pseudocount framework could let $\alpha$ be calibrated per node, per domain, or from the LLM's own confidence, rather than globally by sample size, potentially improving low-data estimates further.
- Because EDP only needs the network structure, it plugs directly into structure-learning pipelines, making fully automatic Bayesian-network construction from text a realistic near-term target.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript addresses the problem of parameterizing a Bayesian network (BN) when its structure is given but expert-elicited conditional probability tables (CPTs) are unavailable. The authors propose eliciting probability estimates from LLMs using two prompting schemes (SepState, which queries each state separately, and FullDist, which asks for the full distribution at once), normalizing the outputs, and then optionally fusing them with observed data through an 'Expert-Driven Priors' (EDP) pseudocount update controlled by a hyperparameter alpha. They evaluate on 80 discrete BNs from bnRep against ground-truth parameters, using BN-level and CPT-level KL divergence, and compare against random, uniform, randomized-name, no-context, and token-probability baselines. They also run downstream classification experiments on nine datasets. The central claims are that SepState and FullDist estimates are closer to ground truth than uniform and random baselines, and that EDP improves over MLE and uniform-prior estimates, particularly in low-data regimes.
Significance. If the central claims held, this would be a useful contribution: a reproducible, external-ground-truth benchmark for LLM probabilistic estimation, and a practical recipe for using LLM outputs as Bayesian priors. Strengths include the scale of the evaluation (80 BNs, several LLM families), the use of bnRep ground truth rather than self-reported confidence, the inclusion of multiple baselines, the downstream classification evaluation, and the released code. The main risks are that the apparent probabilistic knowledge may partly reflect memorization of the source papers from which node descriptions are generated, that the EDP advantage is not tied to a fully specified alpha-selection procedure, and that the reported differences lack inferential statistics. These issues do not invalidate the benchmark, but they must be addressed before the performance claims can be accepted.
major comments (3)
- [Appendix A and Section 4 (prompt construction)] The prompts used for elicitation contain node descriptions and state definitions generated by GPT-4o directly from the PDFs of the source papers for each bnRep network (Appendix A, Figure 4). If those papers are in the LLM training data, the model may retrieve the original CPTs, so the reported advantage over uniform and random baselines may overstate generalized probabilistic knowledge. The LLM(Random) baseline only randomizes variable names and does not control for this retrieval path. Please add a control in which descriptions are constructed without access to the source PDFs (for example, from node names and state labels only), or evaluate on networks published after the LLM training cutoff, or paraphrase and obfuscate the descriptions; without such a control, the central claim that LLMs possess reusable probabilistic knowledge is not yet established.
- [Appendix C and EDP equation in Section 4] The EDP update is pi = (alpha*qi + ci)/(alpha + sum_j cj), but the alpha schedule for the KL-divergence experiments is not fully specified: Appendix C states only that alpha is 'proportional to the inverse of the number of data samples,' without giving the constant or the exact formula. For the classification experiments, alpha is set to 0.5N in the full-data regime and selected from {0.5N, 1.0N, 2.0N} on a development set in the low-data regime. The reader cannot reproduce Figure 3 or assess how much of EDP's advantage comes from the choice of alpha. Please state the exact schedule, report sensitivity of the KL results to alpha, and confirm that alpha was not selected using the ground-truth BN parameters.
- [Figures 2-3 and Tables 1-2] The main performance claims are based on comparisons of median KL divergences across 80 BNs and average macro-F1 over nine datasets, but no significance tests, confidence intervals, or paired effect sizes are reported. A Wilcoxon signed-rank test or bootstrap confidence intervals across the 80 networks would make the SepState-vs-uniform and EDP-vs-Uniform-# claims defensible. The classification evidence is also weaker than the text suggests: in Table 1, EDP is below MLE on HouseVotes84 (0.91 vs 0.94) and Puffin (0.93 vs 1.00) in the full-data Hill Climbing regime, and several other entries are ties; the average improvements are 0.01-0.07. Please add inferential statistics and soften the contribution claiming higher classification accuracy accordingly.
minor comments (5)
- [Section 5 vs Appendix D (Figure 12)] The main text states that both FullDist and SepState outperform the uniform baseline in all non-reasoning models, but Appendix D reports that under CPT KL divergence FullDist performs worse than the uniform baseline for most LLMs. Please reconcile this discrepancy or qualify the claim to refer specifically to BN-level KL divergence.
- [Appendix C (LLM setup)] The appendix says that additional prompts were provided until valid responses were obtained; please report how often retries occurred and whether retried responses were included in the reported cost and quality statistics.
- [Table 1] The dataset name 'HouseVotes84' contains a spacing artifact ('HouseV otes84'); please fix the typo.
- [Section 6 (EDP with Small Data)] The claim that EDP with 10k samples can still help under biased real-world data is motivated by the classification experiments, but those experiments use 10 or 20 training samples rather than a biased 10k-sample regime; please either add a biased-sampling experiment or rephrase the claim.
- [Appendix C (token probability baseline)] The token-probability baseline assigns zero probability to a node state when it is not among the 20 returned candidate strings, which occurs in 12% of cases; please report how sensitive the baseline results are to this cutoff and to the assumption that the returned strings sum to approximately 99%.
Circularity Check
No significant circularity: LLM estimates are evaluated against external bnRep ground truth and compared with baselines.
full rationale
The paper's central claim is empirical: LLM-generated conditional probabilities, used alone or as pseudocount priors in EDP, are closer to the fixed ground-truth parameters of 80 bnRep Bayesian networks than uniform, random, token-probability, and data-only baselines. The derivation chain does not define the predicted probabilities in terms of the ground truth: SepState and FullDist elicit raw numeric estimates from LLM text conditioned on node descriptions and then normalize them into distributions, and EDP combines those normalized priors with empirical counts through standard pseudocount smoothing. None of these equations has the target KL divergence or downstream accuracy as an input. Alpha is a hyperparameter selected by a stated heuristic or by dev-set tuning, so it is calibrated rather than derived from first principles, but this does not make the reported result equal to a fitted input by construction. The self-citations (Nafar, Venable, and Kordjamshidi 2024a, 2024b, 2025) appear only in related-work context and are not load-bearing for the evaluation. A genuine validity risk exists in Appendix A, where node descriptions are generated by GPT-4o from the source PDFs of the very networks being evaluated, so LLM outputs may partly reflect memorization rather than general probabilistic knowledge; that concern belongs to external validity, not to circularity of the derivation, and no quoted equation reduces to its own input.
Assumptions & free parameters
free parameters (1)
- EDP prior strength alpha =
Not fully specified; set proportional to the inverse of the number of data samples in KL experiments, and selected…
assumptions (5)
- standard math The BN KL divergence decomposes into a weighted sum of per-CPT KL divergences for two BNs with the same DAG.
- domain assumption bnRep ground-truth CPTs are valid gold references for probability estimation.
- ad hoc to paper GPT-4o-generated node descriptions are semantically accurate and do not leak ground-truth probabilities into the prompts.
- domain assumption Normalizing raw LLM numeric outputs yields a valid conditional probability distribution.
- domain assumption Forward sampling from ground-truth BNs produces data that resembles realistic data scarcity and bias patterns.
Cite this review
Pith. "Pith review of Extracting Probabilistic Knowledge from Large Language Models for Bayesian Network Parameterization." pith.science (2026). https://pith.science/paper/DEGDZRCO
@misc{pith2026250515918,
author = {Pith},
title = {Pith review of: Extracting Probabilistic Knowledge from Large Language Models for Bayesian Network Parameterization},
year = {2026},
howpublished = {\url{https://pith.science/paper/DEGDZRCO}},
note = {Machine review of arXiv:2505.15918}
}
read the original abstract
In this work, we evaluate the potential of Large Language Models (LLMs) in building Bayesian Networks (BNs) by approximating domain expert priors. LLMs have demonstrated potential as factual knowledge bases; however, their capability to generate probabilistic knowledge about real-world events remains understudied. We explore utilizing the probabilistic knowledge inherent in LLMs to derive probability estimates for statements regarding events and their relationships within a BN. Using LLMs in this context allows for the parameterization of BNs, enabling probabilistic modeling within specific domains. Our experiments on eighty publicly available Bayesian Networks, from healthcare to finance, demonstrate that querying LLMs about the conditional probabilities of events provides meaningful results when compared to baselines, including random and uniform distributions, as well as approaches based on next-token generation probabilities. We explore how these LLM-derived distributions can serve as expert priors to refine distributions extracted from data, especially when data is scarce. Overall, this work introduces a promising strategy for automatically constructing Bayesian Networks by combining probabilistic knowledge extracted from LLMs with real-world data. Additionally, we establish the first comprehensive baseline for assessing LLM performance in extracting probabilistic knowledge.
Figures
Figures from the paper (22 more)
Forward citations
Cited by 2 Pith papers
-
Prior-SG: Task and Prior Driven Region Segmentation for Scene Graphs in Arbitrarily-Structured Environments
Prior-SG uses an LLM-generated probabilistic prior graph and graph-cut inference to segment robot maps into task-relevant functional regions.
-
Runtime Uncertainty Monitoring for LLM-Based Multi-Agent Systems Using Bayesian Networks
A Bayesian-network monitor built on calibrated LLM log-probabilities gives workflow-level uncertainty scores for an actuarial multi-agent system, reproducing baseline RMSE but not clearly separating normal from pertur...
Reference graph
Works this paper leans on
-
[1]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...
-
[2]
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 word.in bbl.in capitalize " " * FUNCT...
-
[3]
AlKhamissi, B.; Li, M.; Celikyilmaz, A.; Diab, M.; and Ghazvininejad, M. 2022. A Review on Language Models as Knowledge Bases. arXiv:2204.06031
arXiv 2022
-
[4]
Ankan, A.; and Panda, A. 2015. pgmpy: Probabilistic graphical models using python. In Proceedings of the 14th Python in Science Conference (SCIPY 2015). Citeseer
work page 2015
-
[5]
Anthropic. 2024. Claude 3.5 Sonnet. Large language model. Accessed: 21 Feb. 2025
work page 2024
-
[6]
Babakov, N.; Reiter, E.; and Bugar \'i n-Diz, A. 2025. Scalability of B ayesian Network Structure Elicitation with Large Language Models: a Novel Methodology and Comparative Analysis. In Rambow, O.; Wanner, L.; Apidianaki, M.; Al-Khalifa, H.; Eugenio, B. D.; and Schockaert, S., eds., Proceedings of the 31st International Conference on Computational Lingui...
work page 2025
-
[7]
Carli, F.; Leonelli, M.; Riccomagno, E.; and Varando, G. 2022. The R Package stagedtrees for Structural Learning of Stratified Staged Trees. Journal of Statistical Software, 102(6): 1–30
work page 2022
-
[8]
Chase, H. 2022. LangChain
2022
Show all 44 references
-
[9]
M.; and Thomas, J
Cover, T. M.; and Thomas, J. A. 2006. Elements of Information Theory (Wiley Series in Telecommunications and Signal Processing). USA: Wiley-Interscience. ISBN 0471241954
2006
-
[10]
Das, B. 2008. Generating Conditional Probabilities for Bayesian Networks: Easing the Knowledge Acquisition Problem. arXiv:cs/0411034
2008 arXiv
-
[11]
DeepSeek-AI; Guo, D.; Yang, D.; Zhang, H.; Song, J.; et al. 2025 a . DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning. arXiv:2501.12948
2025 arXiv
-
[12]
DeepSeek-AI; Liu, A.; Feng, B.; Xue, B.; et al. 2025 b . DeepSeek-V3 Technical Report. arXiv:2412.19437
2025 arXiv
-
[13]
Feng, Y.; Zhou, B.; Lin, W.; and Roth, D. 2025. BIRD : A Trustworthy Bayesian Inference Framework for Large Language Models. In The Thirteenth International Conference on Learning Representations
2025
-
[14]
Gemini Team ; et al. 2024. Gemini: A Family of Highly Capable Multimodal Models. arXiv:2312.11805
2024 arXiv
-
[15]
H.; Gibb, H
Hald, T.; Aspinall, W.; Devleesschauwer, B.; Cooke, R.; Corrigan, T.; Havelaar, A. H.; Gibb, H. J.; Torgerson, P. R.; Kirk, M. D.; Angulo, F. J.; Lake, R. J.; Speybroeck, N.; and Hoffmann, S. 2016. World Health Organization Estimates of the Relative Contributions of Food to th...
2016
-
[16]
K.; Renda, A.; and Carbin, M
Hopkins, A. K.; Renda, A.; and Carbin, M. 2023. Can LLM s Generate Random Numbers? Evaluating LLM Sampling in Controlled Domains. In ICML 2023 Workshop: Sampling and Optimization in Discrete Space
2023
-
[17]
Huang, H.; Shen, X.; Wang, S.; Meng, L.; Liu, D.; Wang, H.; and Bhatt, S. 2025. Verbalized Probabilistic Graphical Modeling. arXiv:2406.05516
2025
-
[18]
Ji, Z.; Xia, Q.; and Meng, G. 2015. A Review of Parameter Learning Methods in Bayesian Network. In Huang, D.-S.; and Han, K., eds., Advanced Intelligent Computing Theories and Applications, 3--12. Cham: Springer International Publishing. ISBN 978-3-319-22053-6
2015
-
[19]
Kadavath, S.; Conerly, T.; Askell, A.; Henighan, T.; Drain, D.; Perez, E.; Schiefer, N.; Hatfield-Dodds, Z.; DasSarma, N.; Tran-Johnson, E.; Johnston, S.; El-Showk, S.; Jones, A.; Elhage, N.; Hume, T.; Chen, A.; Bai, Y.; Bowman, S.; Fort, S.; Ganguli, D.; Hernandez, D.; Jacobs...
2022 arXiv
-
[20]
Kuhn, L.; Gal, Y.; and Farquhar, S. 2023. Semantic Uncertainty: Linguistic Invariances for Uncertainty Estimation in Natural Language Generation. arXiv:2302.09664
2023 arXiv
-
[21]
Kullback, S.; and Leibler, R. A. 1951. On Information and Sufficiency. The Annals of Mathematical Statistics, 22(1): 79--86
1951
-
[22]
Leonelli, M. 2025. bnRep: A repository of Bayesian networks from the academic literature. Neurocomputing, 624: 129502
2025
-
[23]
Levine, R. 2024. Probability or confidence, a distinction without a difference? Intelligence and National Security, 39(4): 729--741
2024
-
[24]
Longato, E.; Tavazzi, E.; Chi \'o , A.; Mora, G.; Sparacino, G.; and Di Camillo, B. 2023. Dealing with Data Scarcity in Rare Diseases: Dynamic Bayesian Networks and Transfer Learning to Develop Prognostic Models of Amyotrophic Lateral Sclerosis. In Juarez, J. M.; Marcos, M.; S...
2023
-
[25]
C.; and Reich, N
McAndrew, T.; Wattanachit, N.; Gibson, G. C.; and Reich, N. G. 2021. Aggregating predictions from experts: A review of statistical methods, experiments, and applications. Wiley Interdisciplinary Reviews: Computational Statistics, 13(2): e1514. Epub 2020 Jun 16
2021
-
[26]
Mendes, E. 2014. Expert-Based Knowledge Engineering of Bayesian Networks, 73--105. Berlin, Heidelberg: Springer Berlin Heidelberg. ISBN 978-3-642-54157-5
2014
-
[27]
B.; and Kordjamshidi, P
Nafar, A.; Venable, K. B.; and Kordjamshidi, P. 2024 a . Reasoning over Uncertain Text by Generative Large Language Models. arXiv:2402.09614
2024 arXiv
-
[28]
B.; and Kordjamshidi, P
Nafar, A.; Venable, K. B.; and Kordjamshidi, P. 2024 b . Teaching Probabilistic Logical Reasoning to Transformers. In Graham, Y.; and Purver, M., eds., Findings of the Association for Computational Linguistics: EACL 2024, 1615--1632. St. Julian ' s, Malta: Association for Comp...
2024
-
[29]
B.; and Kordjamshidi, P
Nafar, A.; Venable, K. B.; and Kordjamshidi, P. 2025. Learning vs Retrieval: The Role of In-Context Examples in Regression with Large Language Models. arXiv:2409.04318
2025 arXiv
-
[30]
OpenAI . 2025. OpenAI o3 and o4-mini System Card . https://openai.com/index/o3-o4-mini-system-card. System card describing the architecture, training, and evaluations of the o3 reasoning model
2025
-
[31]
OpenAI; et al. 2024. GPT-4o System Card. arXiv:2410.21276
2024 arXiv
-
[32]
B.; Sunshine, J.; Althoff, T.; Liu, X.; and McDuff, D
Paruchuri, A.; Garrison, J.; Liao, S.; Hernandez, J. B.; Sunshine, J.; Althoff, T.; Liu, X.; and McDuff, D. 2024. What Are the Odds? Language Models Are Capable of Probabilistic Reasoning. In Al-Onaizan, Y.; Bansal, M.; and Chen, Y.-N., eds., Proceedings of the 2024 Conference...
2024
-
[33]
Petroni, F.; Rockt \"a schel, T.; Riedel, S.; Lewis, P.; Bakhtin, A.; Wu, Y.; and Miller, A. 2019. Language Models as Knowledge Bases? In Inui, K.; Jiang, J.; Ng, V.; and Wan, X., eds., Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and ...
2019
-
[34]
Roberts, A.; Raffel, C.; and Shazeer, N. 2020. How Much Knowledge Can You Pack Into the Parameters of a Language Model? In Webber, B.; Cohn, T.; He, Y.; and Liu, Y., eds., Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), 5418--542...
2020
-
[35]
Saeed, M.; Ahmadi, N.; Nakov, P.; and Papotti, P. 2021. R ule BERT : Teaching Soft Rules to Pre-Trained Language Models. In Moens, M.-F.; Huang, X.; Specia, L.; and Yih, S. W.-t., eds., Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, 146...
2021
-
[36]
Tao, S.; Yao, L.; Ding, H.; Xie, Y.; Cao, Q.; Sun, F.; Gao, J.; Shen, H.; and Ding, B. 2024. When to Trust LLM s: Aligning Confidence with Response Quality. In Ku, L.-W.; Martins, A.; and Srikumar, V., eds., Findings of the Association for Computational Linguistics: ACL 2024, ...
2024
-
[37]
A.; Suciu, V.; and Surdeanu, M
Vacareanu, R.; Negru, V. A.; Suciu, V.; and Surdeanu, M. 2024. From Words to Numbers: Your Large Language Model Is Secretly A Capable Regressor When Given In-Context Examples. In First Conference on Language Modeling
2024
-
[38]
V.; and Zhou, D
Wei, J.; Wang, X.; Schuurmans, D.; Bosma, M.; ichter, b.; Xia, F.; Chi, E.; Le, Q. V.; and Zhou, D. 2022. Chain-of-Thought Prompting Elicits Reasoning in Large Language Models. In Koyejo, S.; Mohamed, S.; Agarwal, A.; Belgrave, D.; Cho, K.; and Oh, A., eds., Advances in Neural...
2022
-
[39]
Xiaoguang, G.; Yu, Y.; and Zhigao, G. 2019. Learning Bayesian networks by constrained Bayesian estimation. Journal of Systems Engineering and Electronics, 30(3): 511--524
2019
-
[40]
Xiong, M.; Hu, Z.; Lu, X.; LI, Y.; Fu, J.; He, J.; and Hooi, B. 2024. Can LLM s Express Their Uncertainty? An Empirical Evaluation of Confidence Elicitation in LLM s. In The Twelfth International Conference on Learning Representations
2024
-
[41]
H.; and Yamada, M
Yang, D.; Tsai, Y.-H. H.; and Yamada, M. 2024. On Verbalized Confidence Scores for LLMs. arXiv preprint arXiv:2412.14737
2024 arXiv
-
[42]
You, Y.; Li, J.; and Shen, L. 2019. An effective Bayesian network parameters learning algorithm for autonomous mission decision-making under scarce data. International Journal of Machine Learning and Cybernetics, 10: 549--561
2019
-
[43]
Zhai, C.; and Lafferty, J. 2001. A study of smoothing methods for language models applied to Ad Hoc information retrieval. In Proceedings of the 24th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval, SIGIR '01, 334–342. New York, N...
2001
-
[44]
Zhao, W. X.; Zhou, K.; Li, J.; Tang, T.; Wang, X.; Hou, Y.; Min, Y.; Zhang, B.; Zhang, J.; Dong, Z.; Du, Y.; Yang, C.; Chen, Y.; Chen, Z.; Jiang, J.; Ren, R.; Li, Y.; Tang, X.; Liu, Z.; Liu, P.; Nie, J.-Y.; and Wen, J.-R. 2025. A Survey of Large Language Models. arXiv:2303.18223
2025 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.