REVIEW 2 major objections 6 minor 85 references
Beyond In-Context Learning: Aligning Long-form Generation of Large Language Models via Task-Inherent Attribute Guidelines
T0 review · 2 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read In-context learning demonstrations alone cannot teach LLMs the format and language of long-form outputs; LongGuide's task-derived guidelines improve both open- and closed-source models by over 5%.
desk verdict LongGuide is a practical, well-tested pipeline for improving long-form generation, but the automatic-selection and 'over 5%' claims need honest qualification; it deserves serious refereeing. 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
LongGuide is a guideline-generation algorithm that turns at most 50 training samples into two parallel instruction streams: Metric Guidelines (MG), natural-language descriptions of the expected quality on self-evaluated metrics selected from a pool of 27, and Output Constraint Guidelines (OCG), a single sentence specifying the minimum, maximum, and average number of sentences and tokens observed in the training outputs. The load-bearing mechanism is the automatic selection step (Step 5), which evaluates the model with MG only, OCG only, both, or neither on the training set and picks whichever maximizes ROUGE-L, so the method can adapt to a model's existing strengths and weaknesses.
What would settle it
Scale the Section 2 property-maintenance experiment to large demonstration sets: choose one long-form task, fix demonstrations whose outputs share a single sentence count and token count, and measure what fraction of few-shot responses match those counts with 3, 10, 50, and 200 demonstrations; if the fraction approaches 100%, the claim that demonstrations cannot transfer format properties is false. Alternatively, construct a task with bimodal output lengths; LongGuide's selection step should choose no guideline there, and if the fixed min/max/average window still wins, the average-statistics assumption fails.
Extended reading notes
Core claim
The paper's central claim is that ICL demonstrations are insufficient for long-form generation because of what it calls the text property transfer (PT) problem: when the language model's probability distribution over text differs from the task's true distribution, demonstrations cannot make the model consistently preserve the task's language and format properties, such as sentence count, token count, and informativeness. It proves a related remark and supports it with experiments showing that even when every demonstration shares the same token count and sentence count, fewer than 5% of generated responses match those counts. The proposed remedy, LongGuide, derives two kinds of guidelines from at most 50 training examples: Metric Guidelines (MG), which tell the model to optimize self-evaluated quality metrics, and Output Constraint Guidelines (OCG), which impose minimum, maximum, and average sentence and token counts. The best of four guideline configurations is chosen by measuring ROUGE-L on the training set. The paper reports that this raises performance by over 5% on average across seven long-form generation tasks for both ChatGPT and Mistral, in both zero- and few-shot settings.
Load-bearing premise
The load-bearing premise is that a 50-sample training set faithfully represents the output length and style distribution of the whole task, so guidelines tuned on those samples will help at test time.
Editorial extensions
If this is right
- LongGuide works even when its training set is just the 3–5 demonstrations used for ICL, so the method applies to tasks that lack a dedicated training split.
- Guidelines learned by a weaker open-source model transfer to a stronger closed-source model, allowing cheap guideline discovery for expensive proprietary models.
- LongGuide combines with automatic prompt optimizers: further optimizing the learned guidelines improves performance, especially when the detailed MG-OCG guideline is used.
- The Output Constraint Guideline is especially effective on summarization, translation, and table-to-text tasks, and ablations show that removing either the token or the sentence constraint hurts performance.
- The Jensen–Shannon divergence between generated and ground-truth distributions on the selected metrics correlates with ROUGE-L, linking the mechanism (better property transfer) to the reported quality gains.
Reading between the lines
- A natural extension the paper leaves implicit: the same two-stream guideline recipe should transfer to other surface-constrained generation tasks where demonstrations alone underperform, such as code generation with length or style requirements; the OCG part in particular is model-independent and costs almost nothing to compute.
- The paper's own failure case (high-variance outputs such as SWiPE) points to a concrete improvement: replacing the single average-based OCG with input-conditioned length predictions could extend the gains to tasks where a fixed min/max window cannot fit.
- Because LongGuide's selection step uses ROUGE-L on the 50-sample train set as a proxy for test quality, the method inherits the usual risk of proxy-based selection; a testable extension would be to run the same selection with a learned reward model or a stronger evaluator and compare downstream performance.
- The reported transfer of guidelines from a weak open model to a strong closed model suggests that guideline discovery could be separated from inference: teams with limited API budgets could amortize one-time guideline generation on cheap models and then apply the same text to expensive ones, but the paper only tests this in one direction, so the reverse pattern remains open.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper argues that in-context learning (ICL) demonstrations are insufficient for long-form generation because they fail to reliably transfer task-specific language and format properties. To address this, the authors propose LongGuide, which learns two kinds of guidelines from at most 50 training samples: Metric Guidelines (MGs) that steer the model toward self-evaluated linguistic qualities, and Output Constraint Guidelines (OCGs) that impose token- and sentence-level length bounds. LongGuide then selects among {no guideline, MG, OCG, MG-OCG} by validation performance on the same 50 samples. The empirical study covers seven generation tasks plus AlpacaEval2 with Mistral-7B-it and ChatGPT, reporting average ROUGE-L / GPT-4o-Judge gains over 5% in zero- and few-shot settings, along with human evaluation, ablations, transfer to non-instruct models, and cost comparisons.
Significance. If the claimed effects hold, LongGuide is a useful practical contribution: it offers a cheap, task-level procedure that improves strong LLMs on long-form generation, and the transfer experiments suggest an attractive workflow where a weak open model learns guidelines that later improve a strong closed model. The evaluation is broad, includes human judgments, and the component ablations are informative. The central effect is plausible—enforcing output length and format statistics from a small training set directly addresses a well-known failure mode of long-form generation. However, the theoretical support is limited to the marginal language distribution P(X) rather than the generation distribution P(Y|X), the test sets are small (200 samples per task), and the automatic selection step has a documented suboptimal case.
major comments (2)
- [§3, Step 5; Apx. E.8 (Tables 14 and 4)] Step 5 of Algorithm 1 selects the guideline configuration on the same 50-sample Dtrain used to estimate the OCG statistics and MG score profiles, so the selection is not protected against overfitting to Dtrain. The paper itself documents a concrete failure in Apx. E.8: for IWSLT17 en-ja with ChatGPT few-shot, Dtrain selects MG-OCG (Table 14) while the best configuration on the test set is MG (Table 4), with ROUGE-L 38.43 for the selected MG-OCG versus 39.45 for MG. This weakens the abstract's claim that LongGuide 'automatically selects the best combination of guidelines.' Please add a stability check (e.g., bootstrap over Dtrain draws or multiple random Dtrain subsamples) and either qualify the selection claim or show that the selection is not systematically biased.
- [Apx. B, Remark B.1 and §2] The theoretical result is about the marginal input distribution: Remark B.1 proves PM(X|Df) ≠ PT(X) under PM ≠ PT. It does not directly address the output distribution PM(Y|X) or arg max_y PM(Y|X), which is what generation quality depends on. The abstract and §2 nevertheless claim that ICL demonstrations are 'theoretically' insufficient to teach 'the task's language and format distributions for generation.' The Limitations section explicitly concedes this gap, but the main text should be revised so that the theoretical contribution is not overstated. I suggest rephrasing the claim to say the theory supports the language-distribution mismatch, while the generation-distribution statement remains a hypothesis supported empirically.
minor comments (6)
- [Abstract and Table 3] The 'over 5%' improvement is an average across seven tasks and settings; several individual cells are far below 5% (e.g., SWiPE zero-shot ChatGPT shows 0.00 ROUGE-L gain in Table 3, and Mistral few-shot CNN shows 1.63). Please qualify the abstract statement as an average and, if space permits, report the per-task range.
- [§2, first paragraph] There is a typo: 'ansMistral' should be 'and Mistral'. Also, the name 'Suzzanne' in Figure 1 is inconsistent with 'Suzanne' in the text and other examples.
- [Algorithm 1 header] The string 'MGâ˘A¸SOCG' appears to be an encoding artifact; it should likely read 'MG-OCG'. Please check all occurrences of this artifact in the appendix.
- [§G.3, Table 20] The cost comparison states LongGuide is 'approximately at least 3.75 times more cost-efficient' than prompt optimizers; Table 20 shows it is 3.75× cheaper than adv-ICL but 18.75× cheaper than APO. Please make the comparison explicit per baseline.
- [§5.2, Figure 5] The 'Gen. Gui. on Demos' baseline is only briefly defined; please clarify how the general guideline prompt is elicited from demonstrations, since this is the main comparison for the 'learned from demonstrations' claim.
- [§5.1] The human evaluation is based on 50 samples and only 5 MG metrics; while useful, the small scale should be acknowledged in the main text (it is currently only implicit in the setup).
Circularity Check
No significant circularity: the central claims are validated against held-out test sets and external priors; self-citations are not load-bearing.
full rationale
LongGuide's main empirical claim—over 5% gains on seven generation tasks—is evaluated on held-out test samples (Table 3), not on the 50-sample Dtrain used to build the OCG/MG or to select among them in Step 5 (Algorithm 1, lines 19-20). The Step 5 choice is a validation procedure: the paper reports test ROUGE-L/GPT-4o-Judge, and E.8 explicitly discloses the one case where the Dtrain-selected guideline is not the test-best (IWSLT17 en-ja, ChatGPT few-shot), demonstrating that the reported gains are not forced by construction. The theoretical Remark B.1 is a conditional proof under explicitly stated assumptions (PM != PT and zero-equivalence); it does not derive the conclusion from itself, and the assumption is supported by external examples rather than by the theorem. The paper's self-citations (adv-ICL baseline and multi-expert prompting related work) are comparisons or background, not premises of LongGuide; no uniqueness claim or ansatz is imported from the authors' prior work. The Limitations section's caveats about task-level average statistics and high-variance tasks are robustness/overfitting concerns, which the paper itself acknowledges, rather than evidence that any prediction is definitionally equal to its inputs. Overall, no circular step can be exhibited.
Assumptions & free parameters
free parameters (7)
- K (metric selection iterations) =
5
- batch_size for Step 1 =
5
- top_5 constraints per iteration =
5
- self_consistency_samples =
3
- train_set_size_cap =
50
- metric_score_scale =
1-5
- metric_pool_size =
27
assumptions (5)
- domain assumption Existence of x with P_M(x) != P_T(x) (Assumption B.1)
- domain assumption Functional zero equivalence of P_M and P_T (Assumption B.2)
- ad hoc to paper The task can be approximated by a sum of text property tasks (Hypothesis B.1)
- domain assumption LLMs can follow the generated guidelines and self-evaluate reliably
- domain assumption Length statistics from Dtrain generalize to the test distribution
Cite this review
Pith. "Pith review of Beyond In-Context Learning: Aligning Long-form Generation of Large Language Models via Task-Inherent Attribute Guidelines." pith.science (2026). https://pith.science/paper/NYHMFZN2
@misc{pith2026250601265,
author = {Pith},
title = {Pith review of: Beyond In-Context Learning: Aligning Long-form Generation of Large Language Models via Task-Inherent Attribute Guidelines},
year = {2026},
howpublished = {\url{https://pith.science/paper/NYHMFZN2}},
note = {Machine review of arXiv:2506.01265}
}
read the original abstract
In-context learning (ICL) is an important yet not fully understood ability of pre-trained large language models (LLMs). It can greatly enhance task performance using a few examples, termed demonstrations, without fine-tuning. Although effective in question answering, ICL often underperforms in long-form generation tasks such as summarization. Under appropriately realistic assumptions, we empirically and theoretically show that ICL demonstrations alone are insufficient to teach LLMs the task language and format distributions for generation. We argue for explicit exposure to the task distributions and hypothesize that defining them by prompting enhances model performance. To this end, we present LongGuide, which efficiently generates two parallel streams of guidelines capturing task language and format properties: (i) Metric Guidelines (MGs) that instruct models to optimize self-evaluated metrics; and (ii) Output Constraint Guidelines (OCGs) that constrain generation at both token and sentence levels. LongGuide automatically selects the best combination of guidelines, improving both strong open- and closed-source LLMs by over 5% in both zero- and few-shot settings. We show that LongGuide is generalizable, learnable by weak models to enhance strong ones, and integrates synergistically with automatic prompt optimizers.
Figures
Figures from the paper (16 more)
Reference graph
Works this paper leans on
-
[1]
Yushi Bai, Xin Lv, Jiajie Zhang, Hongchang Lyu, Jiankai Tang, Zhidian Huang, Zhengxiao Du, Xiao Liu, Aohan Zeng, Lei Hou, Yuxiao Dong, Jie Tang, and Juanzi Li. 2024. https://doi.org/10.18653/v1/2024.acl-long.172 L ong B ench: A bilingual, multitask benchmark for long context understanding . In Proceedings of the 62nd Annual Meeting of the Association for ...
-
[2]
Yejin Bang, Samuel Cahyawijaya, Nayeon Lee, Wenliang Dai, Dan Su, Bryan Wilie, Holy Lovenia, Ziwei Ji, Tiezheng Yu, Willy Chung, Quyet V. Do, Yan Xu, and Pascale Fung. 2023. https://doi.org/10.18653/v1/2023.ijcnlp-main.45 A multitask, multilingual, multimodal evaluation of C hat GPT on reasoning, hallucination, and interactivity . In Proceedings of the 13...
-
[3]
Steven Bird and Edward Loper. 2004. https://aclanthology.org/P04-3031 NLTK : The natural language toolkit . In Proceedings of the ACL Interactive Poster and Demonstration Sessions , pages 214--217, Barcelona, Spain. Association for Computational Linguistics
2004
-
[4]
Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. 2020. Language models are few-shot learners. Advances in neural information processing systems, 33:1877--1901
2020
-
[5]
Mauro Cettolo, Marcello Federico, Luisa Bentivogli, Jan Niehues, Sebastian St \"u ker, Katsuhito Sudoh, Koichiro Yoshino, and Christian Federmann. 2017. https://aclanthology.org/2017.iwslt-1.1 Overview of the IWSLT 2017 evaluation campaign . In Proceedings of the 14th International Conference on Spoken Language Translation, pages 2--14, Tokyo, Japan. Inte...
2017
-
[6]
Daixuan Cheng, Shaohan Huang, and Furu Wei. 2024. https://openreview.net/forum?id=y886UXPEZ0 Adapting large language models via reading comprehension . In The Twelfth International Conference on Learning Representations
2024
-
[7]
Shazeer, Vinodkumar Prabhakaran, Emily Reif, Nan Du, Benton C
Aakanksha Chowdhery, Sharan Narang, Jacob Devlin, Maarten Bosma, Gaurav Mishra, Adam Roberts, Paul Barham, Hyung Won Chung, Charles Sutton, Sebastian Gehrmann, Parker Schuh, Kensen Shi, Sasha Tsvyashchenko, Joshua Maynez, Abhishek Rao, Parker Barnes, Yi Tay, Noam M. Shazeer, Vinodkumar Prabhakaran, Emily Reif, Nan Du, Benton C. Hutchinson, Reiner Pope, Ja...
2022
-
[8]
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. 2021. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168
arXiv 2021
Show all 85 references
-
[9]
Chen, Kenji Kawaguchi, Michael Shieh, and Junxian He
Xuan Long Do, Yiran Zhao, Hannah Brown, Yuxi Xie, James Xu Zhao, Nancy F. Chen, Kenji Kawaguchi, Michael Shieh, and Junxian He. 2024. https://doi.org/10.18653/v1/2024.acl-long.395 Prompt optimization via adversarial in-context learning . In Proceedings of the 62nd Annual Meeti...
2024 doi
-
[10]
Qingxiu Dong, Lei Li, Damai Dai, Ce Zheng, Zhiyong Wu, Baobao Chang, Xu Sun, Jingjing Xu, and Zhifang Sui. 2022. A survey on in-context learning. arXiv preprint arXiv:2301.00234
2022 arXiv
-
[11]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, Anirudh Goyal, Anthony S. Hartshorn, Aobo Yang, Archi Mitra, Archie Sravankumar, Artem Korenev, Arthur Hinsvark, Arun Rao, Aston ...
2024 arXiv
-
[12]
Yann Dubois, Percy Liang, and Tatsunori Hashimoto. 2024. https://openreview.net/forum?id=CybBmzWBX0 Length-controlled alpacaeval: A simple debiasing of automatic evaluators . In First Conference on Language Modeling
2024
-
[13]
Angela Fan, David Grangier, and Michael Auli. 2018 a . https://doi.org/10.18653/v1/W18-2706 Controllable abstractive summarization . In Proceedings of the 2nd Workshop on Neural Machine Translation and Generation, pages 45--54, Melbourne, Australia. Association for Computation...
2018 doi
-
[14]
Angela Fan, Yacine Jernite, Ethan Perez, David Grangier, Jason Weston, and Michael Auli. 2019. https://doi.org/10.18653/v1/P19-1346 ELI 5: Long form question answering . In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 3558--356...
2019 doi
-
[15]
Angela Fan, Mike Lewis, and Yann Dauphin. 2018 b . https://doi.org/10.18653/v1/P18-1082 Hierarchical neural story generation . In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 889--898, Melbourne, Austral...
2018 doi
-
[16]
Marcio Fonseca and Shay B Cohen. 2024. Can large language model summarizers adapt to diverse scientific communication goals? arXiv preprint arXiv:2401.10415
2024 arXiv
-
[17]
Jinlan Fu, See-Kiong Ng, Zhengbao Jiang, and Pengfei Liu. 2023. Gptscore: Evaluate as you desire. arXiv preprint arXiv:2302.04166
2023 arXiv
-
[18]
Claire Gardent, Anastasia Shimorina, Shashi Narayan, and Laura Perez-Beltrachini. 2017. https://doi.org/10.18653/v1/W17-3518 The W eb NLG challenge: Generating text from RDF data . In Proceedings of the 10th International Conference on Natural Language Generation, pages 124--1...
2017 doi
-
[19]
Bogdan Gliwa, Iwona Mochol, Maciej Biesek, and Aleksander Wawer. 2019. https://doi.org/10.18653/v1/D19-5409 SAMS um corpus: A human-annotated dialogue dataset for abstractive summarization . In Proceedings of the 2nd Workshop on New Frontiers in Summarization, pages 70--79, Ho...
2019 doi
-
[20]
Qingyan Guo, Rui Wang, Junliang Guo, Bei Li, Kaitao Song, Xu Tan, Guoqing Liu, Jiang Bian, and Yujiu Yang. 2024. https://openreview.net/forum?id=ZG3RaNIsO8 Connecting large language models with evolutionary algorithms yields powerful prompt optimizers . In The Twelfth Internat...
2024
-
[21]
Muhammad Usman Hadi, Rizwan Qureshi, Abbas Shah, Muhammad Irfan, Anas Zafar, Muhammad Bilal Shaikh, Naveed Akhtar, Jia Wu, Seyedali Mirjalili, et al. 2023. A survey on large language models: Applications, challenges, limitations, and practical usage. Authorea Preprints
2023
-
[22]
Saiful Islam, Kazi Mubasshir, Yuan-Fang Li, Yong-Bin Kang, M
Tahmid Hasan, Abhik Bhattacharjee, Md. Saiful Islam, Kazi Mubasshir, Yuan-Fang Li, Yong-Bin Kang, M. Sohel Rahman, and Rifat Shahriyar. 2021. https://doi.org/10.18653/v1/2021.findings-acl.413 XL -sum: Large-scale multilingual abstractive summarization for 44 languages . In Fin...
2021 doi
-
[23]
Junxian He, Wojciech Kryscinski, Bryan McCann, Nazneen Rajani, and Caiming Xiong. 2022. https://doi.org/10.18653/v1/2022.emnlp-main.396 CTRL sum: Towards generic controllable text summarization . In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Pr...
2022 doi
-
[24]
Ari Holtzman, Jan Buys, Li Du, Maxwell Forbes, and Yejin Choi. 2019. The curious case of neural text degeneration. In International Conference on Learning Representations
2019
-
[25]
Yukun Huang, Yixin Liu, Raghuveer Thirukovalluru, Arman Cohan, and Bhuwan Dhingra. 2024. Calibrating long-form generations from large language models. arXiv preprint arXiv:2402.06544
2024 arXiv
-
[26]
Pegah Jandaghi, XiangHai Sheng, Xinyi Bai, Jay Pujara, and Hakim Sidahmed. 2023. Faithful persona-based conversational dataset generation with large language models. arXiv preprint arXiv:2312.10007
2023 arXiv
-
[27]
Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. 2023. Mistral 7b. arXiv preprint arXiv:2310.06825
2023 arXiv
-
[28]
Klaus Krippendorff. 2022. The reliability of generating data. Chapman and Hall/CRC
2022
-
[29]
Philippe Laban, Jesse Vig, Wojciech Kryscinski, Shafiq Joty, Caiming Xiong, and Chien-Sheng Wu. 2023. https://doi.org/10.18653/v1/2023.acl-long.596 SW i PE : A dataset for document-level simplification of W ikipedia pages . In Proceedings of the 61st Annual Meeting of the Asso...
2023 doi
-
[30]
Surafel Melaku Lakew, Mattia Di Gangi, and Marcello Federico. 2019. https://aclanthology.org/2019.iwslt-1.31 Controlling the output length of neural machine translation . In Proceedings of the 16th International Conference on Spoken Language Translation, Hong Kong. Association...
2019
-
[31]
Junyi Li, Tianyi Tang, Wayne Xin Zhao, Jian-Yun Nie, and Ji-Rong Wen. 2024. Pre-trained language models for text generation: A survey. ACM Computing Surveys, 56(9):1--39
2024
-
[32]
Bill Yuchen Lin, Wangchunshu Zhou, Ming Shen, Pei Zhou, Chandra Bhagavatula, Yejin Choi, and Xiang Ren. 2020. https://doi.org/10.18653/v1/2020.findings-emnlp.165 C ommon G en: A constrained text generation challenge for generative commonsense reasoning . In Findings of the Ass...
2020 doi
-
[33]
Chin-Yew Lin. 2004. https://aclanthology.org/W04-1013 ROUGE : A package for automatic evaluation of summaries . In Text Summarization Branches Out, pages 74--81, Barcelona, Spain. Association for Computational Linguistics
2004
-
[34]
Jianhua Lin. 1991. Divergence measures based on the shannon entropy. IEEE Transactions on Information theory, 37(1):145--151
1991
-
[35]
Do Xuan Long, Duong Ngoc Yen, Anh Tuan Luu, Kenji Kawaguchi, Min-Yen Kan, and Nancy F. Chen. 2024. https://doi.org/10.18653/v1/2024.emnlp-main.1135 Multi-expert prompting improves reliability, safety and usefulness of large language models . In Proceedings of the 2024 Conferen...
2024 doi
-
[36]
Albert Lu, Hongxin Zhang, Yanzhe Zhang, Xuezhi Wang, and Diyi Yang. 2023. https://doi.org/10.18653/v1/2023.findings-eacl.148 Bounding the capabilities of large language models in open text generation with prompt constraints . In Findings of the Association for Computational Li...
2023 doi
-
[37]
Louis Martin, \'E ric de la Clergerie, Beno \^ t Sagot, and Antoine Bordes. 2020. https://aclanthology.org/2020.lrec-1.577 Controllable sentence simplification . In Proceedings of the Twelfth Language Resources and Evaluation Conference, pages 4689--4698, Marseille, France. Eu...
2020
-
[38]
Sewon Min, Kalpesh Krishna, Xinxi Lyu, Mike Lewis, Wen-tau Yih, Pang Koh, Mohit Iyyer, Luke Zettlemoyer, and Hannaneh Hajishirzi. 2023. https://doi.org/10.18653/v1/2023.emnlp-main.741 FA ct S core: Fine-grained atomic evaluation of factual precision in long form text generatio...
2023 doi
-
[39]
OpenAI. 2022. https://openai.com/blog/chatgpt Introducing chatgpt
2022
-
[40]
OpenAI. 2023. https://openai.com/index/gpt-4/ Gpt-4 is openai’s most advanced system, producing safer and more useful responses
2023
-
[41]
OpenAI. 2024. https://openai.com/index/hello-gpt-4o/ Hello gpt-4o
2024
-
[42]
Rangeet Pan, Ali Reza Ibrahimzada, Rahul Krishna, Divya Sankar, Lambert Pouguem Wassi, Michele Merler, Boris Sobolev, Raju Pavuluri, Saurabh Sinha, and Reyhaneh Jabbarvand. 2024. Lost in translation: A study of bugs introduced by large language models while translating code. I...
2024
-
[43]
Kishore Papineni, Salim Roukos, Todd Ward, and Wei-Jing Zhu. 2002. https://doi.org/10.3115/1073083.1073135 B leu: a method for automatic evaluation of machine translation . In Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics, pages 311--3...
2002
-
[44]
Arkil Patel, Satwik Bhattamishra, and Navin Goyal. 2021. https://doi.org/10.18653/v1/2021.naacl-main.168 Are NLP models really able to solve simple math word problems? In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Ling...
2021 doi
-
[45]
Karl Pearson. 1895. Vii. note on regression and inheritance in the case of two parents. proceedings of the royal society of London, 58(347-352):240--242
-
[46]
Reid Pryzant, Dan Iter, Jerry Li, Yin Lee, Chenguang Zhu, and Michael Zeng. 2023. https://doi.org/10.18653/v1/2023.emnlp-main.494 Automatic prompt optimization with `` gradient descent '' and beam search . In Proceedings of the 2023 Conference on Empirical Methods in Natural L...
2023 doi
-
[47]
Yevgeniy Puzikov and Iryna Gurevych. 2018. https://doi.org/10.18653/v1/W18-6557 E 2 E NLG challenge: Neural models vs. templates . In Proceedings of the 11th International Conference on Natural Language Generation, pages 463--471, Tilburg University, The Netherlands. Associati...
2018 doi
-
[48]
Chengwei Qin, Aston Zhang, Anirudh Dagar, and Wenming Ye. 2023. In-context learning with iterative demonstration selection. arXiv preprint arXiv:2310.09881
2023 arXiv
-
[49]
Qwen Team . 2024. https://qwenlm.github.io/blog/qwen2.5/ Qwen2.5: A party of foundation models
2024
-
[50]
Marc'Aurelio Ranzato, Sumit Chopra, Michael Auli, and Wojciech Zaremba. 2015. Sequence level training with recurrent neural networks. arXiv preprint arXiv:1511.06732
2015 arXiv
-
[51]
Jie Ren, Yao Zhao, Tu Vu, Peter J Liu, and Balaji Lakshminarayanan. 2023. Self-evaluation improves selective generation in large language models. In Proceedings on, pages 49--64. PMLR
2023
-
[52]
Kyle Richardson, Sina Zarrie , and Jonas Kuhn. 2017. https://doi.org/10.18653/v1/W17-3516 The C ode2 T ext challenge: Text generation in source libraries . In Proceedings of the 10th International Conference on Natural Language Generation, pages 115--119, Santiago de Compostel...
2017 doi
-
[53]
Nikunj Saunshi, Sadhika Malladi, and Sanjeev Arora. 2020. A mathematical exploration of why language models help solve downstream tasks. arXiv preprint arXiv:2010.03648
2020 arXiv
-
[54]
Liu, and Christopher D
Abigail See, Peter J. Liu, and Christopher D. Manning. 2017. https://doi.org/10.18653/v1/P17-1099 Get to the point: Summarization with pointer-generator networks . In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers...
2017 doi
-
[55]
Aaditya K Singh and DJ Strouse. 2024. Tokenization counts: the impact of tokenization on arithmetic in frontier llms. arXiv preprint arXiv:2402.14903
2024 arXiv
-
[56]
Jiao Sun, Yufei Tian, Wangchunshu Zhou, Nan Xu, Qian Hu, Rahul Gupta, John Wieting, Nanyun Peng, and Xuezhe Ma. 2023 a . https://doi.org/10.18653/v1/2023.emnlp-main.190 Evaluating large language models on controlled generation tasks . In Proceedings of the 2023 Conference on E...
2023 doi
-
[57]
Jiao Sun, Yufei Tian, Wangchunshu Zhou, Nan Xu, Qian Hu, Rahul Gupta, John Frederick Wieting, Nanyun Peng, and Xuezhe Ma. 2023 b . Evaluating large language models on controlled generation tasks. arXiv preprint arXiv:2310.14542
2023 arXiv
-
[58]
Gemini Team, Rohan Anil, Sebastian Borgeaud, Yonghui Wu, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, et al. 2023. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805
2023 arXiv
-
[59]
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth \'e e Lacroix, Baptiste Rozi \`e re, Naman Goyal, Eric Hambro, Faisal Azhar, Aurelien Rodriguez, Armand Joulin, Edouard Grave, and Guillaume Lample. 2023. https://api.semanticscholar.org...
2023 arXiv
-
[60]
Sara P Wagner. 1963. The abc's of communication. American Association of Industrial Nurses Journal, 11(8):8--11
1963
-
[61]
Jiaan Wang, Yunlong Liang, Fandong Meng, Zengkui Sun, Haoxiang Shi, Zhixu Li, Jinan Xu, Jianfeng Qu, and Jie Zhou. 2023 a . https://doi.org/10.18653/v1/2023.newsum-1.1 Is C hat GPT a good NLG evaluator? a preliminary study . In Proceedings of the 4th New Frontiers in Summariza...
2023 doi
-
[62]
Rui Wang, Hongru Wang, Fei Mi, Yi Chen, Ruifeng Xu, and Kam-Fai Wong. 2023 b . Self-critique prompting with large language models for inductive instructions. arXiv preprint arXiv:2305.13733
2023 arXiv
-
[63]
Xinyi Wang, Wanrong Zhu, Michael Saxon, Mark Steyvers, and William Yang Wang. 2024. Large language models are latent variable models: Explaining and finding good demonstrations for in-context learning. Advances in Neural Information Processing Systems, 36
2024
-
[64]
Xuezhi Wang, Jason Wei, Dale Schuurmans, Quoc V Le, Ed H Chi, Sharan Narang, Aakanksha Chowdhery, and Denny Zhou. 2022 a . Self-consistency improves chain of thought reasoning in language models. In The Eleventh International Conference on Learning Representations
2022
-
[65]
Yizhong Wang, Swaroop Mishra, Pegah Alipoormolabashi, Yeganeh Kordi, Amirreza Mirzaei, Atharva Naik, Arjun Ashok, Arut Selvan Dhanasekaran, Anjana Arunkumar, David Stap, Eshaan Pathak, Giannis Karamanolakis, Haizhi Lai, Ishan Purohit, Ishani Mondal, Jacob Anderson, Kirby Kuzni...
2022
-
[66]
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824--24837
2022
-
[67]
Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger, Mari...
2020 doi
-
[68]
Sang Michael Xie, Aditi Raghunathan, Percy Liang, and Tengyu Ma. 2021. An explanation of in-context learning as implicit bayesian inference. In International Conference on Learning Representations
2021
-
[69]
Chengrun Yang, Xuezhi Wang, Yifeng Lu, Hanxiao Liu, Quoc V Le, Denny Zhou, and Xinyun Chen. 2024. https://openreview.net/forum?id=Bb4VGOWELI Large language models as optimizers . In The Twelfth International Conference on Learning Representations
2024
-
[70]
Xianjun Yang, Yan Li, Xinlu Zhang, Haifeng Chen, and Wei Cheng. 2023 a . Exploring the limits of chatgpt for query or aspect-based text summarization. arXiv preprint arXiv:2302.08081
2023 arXiv
-
[71]
Zhao Yang, Yuanzhe Zhang, Dianbo Sui, Cao Liu, Jun Zhao, and Kang Liu. 2023 b . https://doi.org/10.18653/v1/2023.emnlp-main.331 Representative demonstration selection for in-context learning with two-stage determinantal point process . In Proceedings of the 2023 Conference on ...
2023 doi
-
[72]
Fan Yin, Jesse Vig, Philippe Laban, Shafiq Joty, Caiming Xiong, and Chien-Sheng Wu. 2023. https://doi.org/10.18653/v1/2023.acl-long.172 Did you read the instructions? rethinking the effectiveness of task definitions in instruction learning . In Proceedings of the 61st Annual M...
2023 doi
-
[73]
Weizhe Yuan, Graham Neubig, and Pengfei Liu. 2021. https://openreview.net/forum?id=5Ya8PbvpZ9 BARTS core: Evaluating generated text as text generation . In Advances in Neural Information Processing Systems
2021
-
[74]
Weinberger, and Yoav Artzi
Tianyi Zhang, Varsha Kishore, Felix Wu*, Kilian Q. Weinberger, and Yoav Artzi. 2020. https://openreview.net/forum?id=SkeHuCVFDr Bertscore: Evaluating text generation with bert . In International Conference on Learning Representations
2020
-
[75]
Gonzalez, and Ion Stoica
Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric Xing, Hao Zhang, Joseph E. Gonzalez, and Ion Stoica. 2023. https://openreview.net/forum?id=uccHPGDlao Judging LLM -as-a-judge with MT -bench and chatbot ...
2023
-
[76]
Yongchao Zhou, Andrei Ioan Muresanu, Ziwen Han, Keiran Paster, Silviu Pitis, Harris Chan, and Jimmy Ba. 2023 a . https://openreview.net/forum?id=92gvk82DE- Large language models are human-level prompt engineers . In The Eleventh International Conference on Learning Representations
2023
-
[77]
Yongxin Zhou, Fabien Ringeval, and Fran c ois Portet. 2023 b . Can gpt models follow human summarization guidelines? evaluating chatgpt and gpt-4 for dialogue summarization. arXiv preprint arXiv:2310.16810
2023
-
[78]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...
-
[79]
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 gl...
-
[80]
URL: " 'urlintro :=
ENTRY address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before...
-
[81]
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 gl...
-
[82]
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 gl...
-
[83]
@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 ...
-
[84]
\@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...
-
[85]
@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 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.