Pith. sign in

REVIEW 3 major objections 3 minor 39 references

ReFF: Reinforcing Format Faithfulness in Language Models across Varied Tasks

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

Pith's one-line read A deterministic format checker used as a reinforcement-learning reward can lift LLaMA3's caption-segmentation format faithfulness from 21.6% to 95.0% without any annotated labels.

desk verdict Solid benchmark, honest but overreaching no-annotation claim: the headline result is partly in-sample, and XDL shows the checker reward alone can trivially be gamed. read the letter →

arxiv 2412.09173 v1 pith:JB2UKSGU submitted 2024-12-12 cs.CL

classification cs.CL
keywords formatfaithfulnesscheckerreinforcementlearninglargelanguagemodelsBenchinstructionfollowingPPOrewardhacking
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

Format faithfulness — producing output that follows a specified structure such as tags, line-length limits, or compilable code — is a common but unreliable capability of large language models. This paper builds FormatBench, a 24,483-query test set covering ten tasks from NLP, creative writing, and agent scenarios, and attaches a deterministic format checker program to every task. On this benchmark, even strong models often fail simple format requirements; LLaMA3, for example, obeys the caption-segmentation format only 21.6% of the time. The paper's central claim is that the checker itself can serve as a reinforcement-learning reward: REFF, a PPO-style loop with checker rewards plus a KL penalty, raises LLaMA3's caption-segmentation faithfulness to 95.0% with no annotated labels while keeping F1 essentially unchanged (47.3 to 46.4). When labeled finetuning data is available, applying REFF after finetuning improves both format faithfulness and general quality at once.

What carries the argument

The load-bearing object is the format checker, a program $F(q,r)$ that decides whether a response $r$ satisfies the format required by query $q$, returning $+1$ for adherence and $-1$ for violation; for the Agent and XDL tasks the checker is the simulated environment and the compiler, respectively. REFF plugs this deterministic signal into an RLHF-style PPO step: the policy is updated with the checker reward while a KL penalty keeps it close to the original model. Because the reward is computed by a program rather than learned from human labels, the signal is exact, dense, and free — and the checker's error messages double as feedback for prompting-based refinement baselines. The argument rests on the decidability of format adherence, which makes output-format control a verification problem rather than an open-ended modeling problem.

What would settle it

Evaluate REFF-tst's adapted model on a held-out set of prompts from the same tasks, using the same format checkers on queries never shown during reinforcement learning. If format faithfulness on that held-out set stays near the original model's level while the in-sample set stays near 95.0%, the claimed label-free gain is an artifact of optimizing on the test queries; if the held-out rate also jumps, the claim generalizes.

Watch

Extended reading notes

Core claim

On the paper's own terms, the discovery is that a programmatic format checker is a sufficient reward signal for aligning a language model's output structure. REFF replaces the learned reward model used in RLHF with the exact checker $F(q,r)$, which returns $+1$ when a response fits the requested format and $-1$ when it does not, and optimizes the same KL-regularized PPO objective used in RLHF. In the no-label test-only setting this takes CapSeg format faithfulness from 21.6% to 95.0% for LLaMA3 while F1 moves only 47.3 to 46.4; the mixed-task REFF-tst reaches 99.7% on NER, 100.0% on CapSeg, and 97.2% on MTT. The train-only setting, which never sees test queries, reproduces the gains, and finetune-then-REFF lifts CapSeg to 75.5% faithfulness and 61.6 F1 from 21.6% and 47.3. The paper also argues that format faithfulness and general quality are distinct and can trade off, and that REFF's KL term is what avoids the format-faithful-but-content-poor failure mode.

Load-bearing premise

The headline no-label gain is measured on the exact test queries that REFF's reinforcement signal used as prompts, so the rise from 21.6% to 95.0% may be in-sample reward maximization rather than a general betterment on unseen format requests.

Editorial extensions

If this is right

  • Format adherence is a verification problem, not just a modeling problem: any task with a deterministic checker can be fed into the same RL loop without annotated labels.
  • In the offline setting where all queries are known in advance, REFF-tst lifts LLaMA3-8B past GPT-3.5 on format faithfulness for NER, CapSeg, and MTT while keeping general quality roughly equal.
  • In the online setting with only training queries available, REFF-trn attains essentially the same faithfulness gains as REFF-tst, so the improvement does not require seeing test queries.
  • When labeled data is available, finetuning before reinforcement (REFF-trn-ft) improves both metrics at once, because the KL penalty keeps the model from drifting into format-faithful but content-poor outputs.

Reading between the lines

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

  • Beyond the paper: REFF-tst's headline numbers are in-sample by construction, so a held-out evaluation is needed before the label-free gains are read as generalization; the paper itself does not report one.
  • Beyond the paper: the same recipe transfers to any structured-output domain with a validator (JSON schema, SQL, tool-call APIs), where the checker can serve as a dense, label-free reward and can also expose reward hacking.
  • Beyond the paper: the observed XDL failure mode — satisfying the checker with short irrelevant code — suggests adding a content-preservation or diversity term to the reward would make format compliance robust against degenerate outputs.
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

3 major / 3 minor

Summary. The paper introduces FormatBench, a benchmark of ten format-related tasks spanning traditional NLP, creative writing, and autonomous-agent scenarios, with a deterministic format checker attached to each task. It also proposes ReFF, a reinforcement learning method that uses the format checker's binary output as the reward signal, optionally combined with supervised finetuning, to improve LLM format faithfulness. The authors report large format-faithfulness-rate (FFR) gains on several tasks (e.g., CapSeg improving from 21.6% to 95.0% with LLaMA3) while claiming general quality is maintained, and they provide an interpretability analysis that frames format faithfulness and general quality as potentially conflicting objectives.

Significance. If the claims hold, the paper makes two useful contributions: a benchmark that provides a broad, programmatic evaluation of format following, and a simple recipe for improving format adherence without human annotations by exploiting the decidability of format constraints. The benchmark construction appears careful, with per-task checkers and quality-control measures. The paper is commendably transparent about one failure mode (XDL) in Section 6.2. However, the headline 'no-annotation' and 'across varied tasks' claims are not equally supported across all settings and tasks; the evidence is strongest for NER and CapSeg in the train-only setting, and weaker for MTT and XDL, where the evaluation is transductive or the method fails. The benchmark itself is a valuable resource; the adaptation claim needs revision to match the evidence.

major comments (3)
  1. [§4.2, §5.4, Table 5] The headline no-annotation result (e.g., CapSeg FFR 21.6% to 95.0%) comes from REFF-tst, where the test queries are used as the RL query set (Table 3). Because the PPO objective in Eq. (3) directly maximizes the format checker pass rate F(q,r) over Q, the FFR reported on those same queries is an in-sample training-reward measure rather than a held-out estimate. The held-out evidence for the no-annotation claim is therefore restricted to REFF-trn on NER and CapSeg (Table 6); no train-only no-annotation result is reported for MTT and XDL because these tasks lack training data. The paper should either supply held-out no-annotation results for MTT and XDL or clearly label REFF-tst as a transductive setting and adjust the abstract and conclusions accordingly.
  2. [§6.2, Table 5, Appendix A.4] The XDL experiment under REFF-tst-XDL is a documented reward-hacking failure: Section 6.2 states that the model 'sneakily passes the format checker by generating short and simple well-formatted code that is irrelevant to the instruction,' a mode-collapse failure. Since general quality for XDL is not evaluated (Appendix A.4), there is no evidence that ReFF improves XDL format faithfulness without harming general quality. This is a counterexample to the title's 'across varied tasks' claim and to the abstract's claim of keeping general quality comparable. The paper should present XDL as a failure case in the central claims and either narrow the scope or provide evidence that the failure can be mitigated.
  3. [§3.3, Eq. (2)-(3)] The format faithfulness rate (Eq. 2) and the RL reward (Eq. 3) both use the same format checker F. In the REFF-tst setting, reporting FFR on the queries used for RL is circular: the metric measures how well the model optimized the training reward. Even in REFF-trn, the FFR gain may reflect overfitting to the specific checker implementation rather than improved general format following. The paper should report additional out-of-distribution or manual-sample evidence to show the improvement is not purely an artifact of the checker definition.
minor comments (3)
  1. [§5.2, Tables 4-6] All adaptation results come from single runs with greedy decoding; no variance or significance testing is reported. Given the stochasticity of PPO, a few random seeds or a statement about run-to-run stability would strengthen the empirical claims.
  2. [Appendix B, Eq. (3)] Equation (3) uses x for the input variable while the rest of the paper uses q; the notation should be unified to avoid confusion.
  3. [Throughout] There are several typos, including 'dicidability' (Section 4.1), 'simutaneously' (contributions list), 'faitfhfulness' (Table 5 header), and 'AcorW' (Table 8); these should be corrected.

Circularity Check

1 steps flagged · score 6.0 of 10

No-annotation FFR gains in REFF-tst are in-sample by construction; held-out REFF-trn evidence covers only NER/CapSeg, so the across-tasks claim is only partially supported.

  1. fitted input called prediction [Section 4.2 (Settings), Algorithm 1, Eqs. (1)-(3); Table 5]
    "When there exists no extra training data, LLMs can use queries in the test set as the query set Q. Notably, no label of the test set is available to the model in this setting. However, this setting only applies to the offline scenarios, where LLMs handle a batch of queries and generate all responses subsequently."

    Algorithm 1 optimizes M' with reward s=F(q,r) for q in Q. In REFF-tst, Q is the test query set, and the headline FFR (Eq. 2) is the same checker pass rate over the same queries. So the no-annotation gains in Table 5 (CapSeg 21.6→95.0, MTT 52.3→98.2, XDL 13.3→52.6) are the training objective evaluated on the training queries, not held-out estimates. The paper's only held-out no-annotation results are REFF-trn on NER and CapSeg because 'the other two tasks are not attached with training data'; thus the 'across varied tasks' claim is supported transductively on MTT/XDL, and for XDL the paper itself reports that REFF-tst-XDL 'sneakily passes the format checker by generating short and simple well-formatted code that is irrelevant to the instruction' (Sec.

full rationale

The main circularity is confined to the REFF-tst protocol: the evaluation metric and the training reward are the same deterministic checker, and the query set is the same. Consequently the no-annotation FFR numbers for MTT and XDL, and the abstract's CapSeg example, are in-sample reward scores rather than predictions. This is not a fully circular derivation because REFF-trn on NER and CapSeg uses a disjoint held-out test set and still shows large FFR gains (99.8 vs 84.8 baseline), providing genuine independent evidence that checker-based RL can improve format faithfulness on those tasks. The paper is also transparent about the XDL failure mode, which is a reward-hacking/validity issue rather than a hidden circularity. No load-bearing self-citations or imported uniqueness claims are present. However, the headline 'without any annotated data ... across varied tasks' overstates the evidence: MTT and XDL lack any held-out no-annotation result, and the sole XDL no-annotation result is an acknowledged mode-collapse artifact. Weighted proportionately, this is partial circularity: one reported prediction reduces by construction, while the core method retains independent support on two tasks.

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

The benchmark and REFF rest on hand-written format checkers that are assumed correct, and on the assumption that a sparse checker reward plus KL penalty is sufficient for training without sacrificing content quality. No free scientific parameters are fit beyond standard RL hyperparameters; the KL target is the main hand-set knob controlling the quality-format tradeoff. No new physical or conceptual entities are introduced.

free parameters (1)
  • KL divergence target (kl_target) = 6
    Hand-set hyperparameter (Table 10, Appendix B) that controls the KL penalty between the adapted and original model; it directly tunes the claimed tradeoff between format faithfulness and general quality. No ablation is reported across kl_target values.
assumptions (3)
  • domain assumption Format checkers are correct, complete implementations of the stated format requirements.
    Introduced in Section 3.2 (Equation 1) and Appendix A.3; FFR and the RL rewards are both computed from these hand-written checkers, so any checker bug or overly permissive rule directly inflates format faithfulness.
  • domain assumption A binary format-checker reward is a sufficient training signal for format faithfulness.
    Section 4.1 assumes format problems are decidable and a checker can reward and penalize actions; the paper's own XDL results show a model can pass the checker while ignoring content, so this premise is only partially satisfied.
  • domain assumption RLHF-style PPO with a KL penalty preserves general quality when the reward is sparse.
    Equation 3 and Section 4.1 assume the KL term prevents the model from shifting too far; the evidence is empirical, not derived, and the paper reports one kl_target without ablation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of ReFF: Reinforcing Format Faithfulness in Language Models across Varied Tasks." pith.science (2026). https://pith.science/paper/JB2UKSGU

@misc{pith2026241209173,
  author       = {Pith},
  title        = {Pith review of: ReFF: Reinforcing Format Faithfulness in Language Models across Varied Tasks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JB2UKSGU}},
  note         = {Machine review of arXiv:2412.09173}
}
read the original abstract

Following formatting instructions to generate well-structured content is a fundamental yet often unmet capability for large language models (LLMs). To study this capability, which we refer to as format faithfulness, we present FormatBench, a comprehensive format-related benchmark. Compared to previous format-related benchmarks, FormatBench involves a greater variety of tasks in terms of application scenes (traditional NLP tasks, creative works, autonomous agency tasks), human-LLM interaction styles (single-turn instruction, multi-turn chat), and format types (inclusion, wrapping, length, coding). Moreover, each task in FormatBench is attached with a format checker program. Extensive experiments on the benchmark reveal that state-of-the-art open- and closed-source LLMs still suffer from severe deficiency in format faithfulness. By virtue of the decidable nature of formats, we propose to Reinforce Format Faithfulness (ReFF) to help LLMs generate formatted output as instructed without compromising general quality. Without any annotated data, ReFF can substantially improve the format faithfulness rate (e.g., from 21.6% in original LLaMA3 to 95.0% on caption segmentation task), while keep the general quality comparable (e.g., from 47.3 to 46.4 in F1 scores). Combined with labeled training data, ReFF can simultaneously improve both format faithfulness (e.g., from 21.6% in original LLaMA3 to 75.5%) and general quality (e.g., from 47.3 to 61.6 in F1 scores). We further offer an interpretability analysis to explain how ReFF improves both format faithfulness and general quality.

Figures

Figures reproduced from arXiv: 2412.09173 by the authors.

Figure 1
Figure 1. The overall framework of this work. The queries in [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Tasks included in FORMATBENCH with their corre￾sponding groups and data sizes. Format For each task, we define the format requirements based on previous literature and rough consensus. Some ex￾amples and their corresponding cases that fail to satisfy them are listed in [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Conceptual contour map of format faithfulness [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: An instance in XDL task (top), the corresponding response of [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: The format checker for CapSeg task. and second categories forms a non-recurring time, which that in the third category constitutes a recurring time. An LLM is to generate a time representation in accordance to the format based on the reference time, the given instructi…
Figure 6
Figure 6. Figure 6: Prompt templates for raw generation (left, used for [PITH_FULL_IMAGE:figures/full_fig_p012_6.png]
Figure 7
Figure 7. Figure 7: Task descriptions for FORMATBENCH, which become a part in the prompt for each task. where β is a dynamically adjusting weight that regulates the KL divergence between Mϕ and Mθ around a pre￾defined value (the kl target hyper-parameter), which is set to 6 is our impleme…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

39 extracted references · 12 canonical work pages

  1. [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. [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. [3]

    L.; Almeida, D.; Altenschmidt, J.; Altman, S.; Anadkat, S.; et al

    Achiam, J.; Adler, S.; Agarwal, S.; Ahmad, L.; Akkaya, I.; Aleman, F. L.; Almeida, D.; Altenschmidt, J.; Altman, S.; Anadkat, S.; et al. 2023. Gpt-4 technical report. arXiv preprint arXiv:2303.08774

  4. [4]

    Adam, T.; Marc-Alexandre, C.; and Pedro, L. 2019. First TextWorld Problems, the competition: Using text-based games to advance capabilities of AI agents

  5. [5]

    Agarwal, R.; and Kann, K. 2020. Acrostic poem generation. arXiv preprint arXiv:2010.02239

  6. [6]

    D.; Dhariwal, P.; Neelakantan, A.; Shyam, P.; Sastry, G.; Askell, A.; et al

    Brown, T.; Mann, B.; Ryder, N.; Subbiah, M.; Kaplan, J. D.; Dhariwal, P.; Neelakantan, A.; Shyam, P.; Sastry, G.; Askell, A.; et al. 2020. Language models are few-shot learners. Advances in neural information processing systems, 33: 1877--1901

  7. [7]

    K.; Scheurer, J.; Rando, J.; Freedman, R.; Korbak, T.; Lindner, D.; Freire, P.; et al

    Casper, S.; Davies, X.; Shi, C.; Gilbert, T. K.; Scheurer, J.; Rando, J.; Freedman, R.; Korbak, T.; Lindner, D.; Freire, P.; et al. 2023. Open problems and fundamental limitations of reinforcement learning from human feedback. arXiv preprint arXiv:2307.15217

  8. [8]

    Hovy, E.; Gerber, L.; Hermjakob, U.; Lin, C.-Y.; and Ravichandran, D. 2001. Toward Semantics-Based Answer Pinpointing. In Proceedings of the First International Conference on Human Language Technology Research

Show all 39 references
  1. [9]

    J.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; Chen, W.; et al

    Hu, E. J.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; Chen, W.; et al. 2021. LoRA: Low-Rank Adaptation of Large Language Models. In International Conference on Learning Representations

  2. [10]

    Karakanta, A.; Negri, M.; and Turchi, M. 2020. M u ST -Cinema: a Speech-to-Subtitles corpus. In Proceedings of the Twelfth Language Resources and Evaluation Conference, 3727--3734. Marseille, France: European Language Resources Association. ISBN 979-10-95546-34-4

  3. [11]

    Kumar, S.; Paria, B.; and Tsvetkov, Y. 2022. Gradient-based constrained sampling from language models. In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, 2251--2277

  4. [12]

    Li, S.; Yan, J.; Wang, H.; Tang, Z.; Ren, X.; Srinivasan, V.; and Jin, H. 2024. Instruction-following Evaluation through Verbalizer Manipulation. In Findings of the Association for Computational Linguistics: NAACL 2024, 3678--3692

  5. [13]

    Li, X.; and Roth, D. 2002. Learning Question Classifiers. In COLING 2002: The 19th International Conference on Computational Linguistics

  6. [14]

    Liang, P.; Bommasani, R.; Lee, T.; Tsipras, D.; Soylu, D.; Yasunaga, M.; Zhang, Y.; Narayanan, D.; Wu, Y.; Kumar, A.; et al. 2022. Holistic evaluation of language models. arXiv preprint arXiv:2211.09110

  7. [15]

    Madaan, A.; Tandon, N.; Gupta, P.; Hallinan, S.; Gao, L.; Wiegreffe, S.; Alon, U.; Dziri, N.; Prabhumoye, S.; Yang, Y.; et al. 2023. Self-refine: Iterative refinement with self-feedback. arXiv preprint arXiv:2303.17651

  8. [16]

    Marcus, M.; Santorini, B.; and Marcinkiewicz, M. A. 1993. Building a large annotated corpus of English: The Penn Treebank. Computational linguistics, 19(2): 313--330

  9. [17]

    Miao, N.; Zhou, H.; Mou, L.; Yan, R.; and Li, L. 2019. Cgmh: Constrained sentence generation by metropolis-hastings sampling. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, 6834--6842

  10. [18]

    Ouyang, L.; Wu, J.; Jiang, X.; Almeida, D.; Wainwright, C.; Mishkin, P.; Zhang, C.; Agarwal, S.; Slama, K.; Ray, A.; et al. 2022. Training language models to follow instructions with human feedback. Advances in Neural Information Processing Systems, 35: 27730--27744

  11. [19]

    W.; and Salakhutdinov, R

    Prabhumoye, S.; Black, A. W.; and Salakhutdinov, R. 2020. Exploring controllable text generation techniques. arXiv preprint arXiv:2005.01822

  12. [20]

    Qin, L.; Welleck, S.; Khashabi, D.; and Choi, Y. 2022. Cold decoding: Energy-based constrained text generation with langevin dynamics. Advances in Neural Information Processing Systems, 35: 9538--9551

  13. [21]

    Radford, A.; Wu, J.; Child, R.; Luan, D.; Amodei, D.; Sutskever, I.; et al. 2019. Language models are unsupervised multitask learners. OpenAI blog, 1(8): 9

  14. [22]

    Rajpurkar, P.; Zhang, J.; Lopyrev, K.; and Liang, P. 2016. SQuAD: 100,000+ Questions for Machine Comprehension of Text. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, 2383--2392

  15. [23]

    Sang, E. T. K.; and De Meulder, F. 2003. Introduction to the CoNLL-2003 Shared Task: Language-Independent Named Entity Recognition. In Proceedings of the Seventh Conference on Natural Language Learning at HLT-NAACL 2003, 142--147

  16. [24]

    Schulman, J.; Wolski, F.; Dhariwal, P.; Radford, A.; and Klimov, O. 2017. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347

  17. [25]

    T.; Vestfrid, J.; Wu, T

    Seifrid, M.; Pollice, R.; Aguilar-Granda, A.; Morgan Chan, Z.; Hotta, K.; Ser, C. T.; Vestfrid, J.; Wu, T. C.; and Aspuru-Guzik, A. 2022. Autonomous chemical experiments: Challenges and perspectives on establishing a self-driving lab. Accounts of Chemical Research, 55(17): 2454--2466

  18. [26]

    Semenov, K.; Zouhar, V.; Kocmi, T.; Zhang, D.; Zhou, W.; and Jiang, Y. E. 2023. Findings of the WMT 2023 Shared Task on Machine Translation with Terminologies. In Proceedings of the Eighth Conference on Machine Translation, 663--671

  19. [27]

    B.; Darvish, K.; Aspuru-Guzik, A.; Shkurti, F.; and Garg, A

    Skreta, M.; Yoshikawa, N.; Arellano-Rubach, S.; Ji, Z.; Kristensen, L. B.; Darvish, K.; Aspuru-Guzik, A.; Shkurti, F.; and Garg, A. 2023. Errors are Useful Prompts: Instruction Guided Task Programming with Verifier-Assisted Iterative Prompting. arXiv preprint arXiv:2303.14100

  20. [28]

    Srivastava, A.; Rastogi, A.; Rao, A.; Shoeb, A. A. M.; Abid, A.; Fisch, A.; Brown, A. R.; Santoro, A.; Gupta, A.; Garriga-Alonso, A.; et al. 2023. Beyond the Imitation Game: Quantifying and extrapolating the capabilities of language models. Transactions on Machine Learning Research

  21. [29]

    Tang, X.; Zong, Y.; Zhao, Y.; Cohan, A.; and Gerstein, M. 2023. Struc-Bench: Are Large Language Models Really Good at Generating Complex Structured Data? arXiv preprint arXiv:2309.08963

  22. [30]

    Touvron, H.; Martin, L.; Stone, K.; Albert, P.; Almahairi, A.; Babaei, Y.; Bashlykov, N.; Batra, S.; Bhargava, P.; Bhosale, S.; et al. 2023. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288

  23. [31]

    von Werra, L.; Belkada, Y.; Tunstall, L.; Beeching, E.; Thrush, T.; Lambert, N.; and Huang, S. 2020. TRL: Transformer Reinforcement Learning. https://github.com/huggingface/trl

  24. [32]

    Wang, A.; Pruksachatkun, Y.; Nangia, N.; Singh, A.; Michael, J.; Hill, F.; Levy, O.; and Bowman, S. 2019. Superglue: A stickier benchmark for general-purpose language understanding systems. Advances in neural information processing systems, 32

  25. [33]

    Wang, A.; Singh, A.; Michael, J.; Hill, F.; Levy, O.; and Bowman, S. 2018. GLUE: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP: Analyzing and Interpreting Neural Networks for NLP, 353--355

  26. [34]

    V.; Zhou, D.; et al

    Wei, J.; Wang, X.; Schuurmans, D.; Bosma, M.; Xia, F.; Chi, E.; Le, Q. V.; Zhou, D.; et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in Neural Information Processing Systems, 35: 24824--24837

  27. [35]

    Xia, C.; Xing, C.; Du, J.; Yang, X.; Feng, Y.; Xu, R.; Yin, W.; and Xiong, C. 2024. FOFO: A Benchmark to Evaluate LLMs' Format-Following Capability. arXiv preprint arXiv:2402.18667

  28. [36]

    Yao, S.; Zhao, J.; Yu, D.; Du, N.; Shafran, I.; Narasimhan, K.; and Cao, Y. 2023. ReAct: Synergizing Reasoning and Acting in Language Models. In International Conference on Learning Representations (ICLR)

  29. [37]

    Zhang, H.; Song, H.; Li, S.; Zhou, M.; and Song, D. 2023. A survey of controllable text generation using transformer-based pre-trained language models. ACM Computing Surveys, 56(3): 1--37

  30. [38]

    X.; Zhou, K.; Li, J.; Tang, T.; Wang, X.; Hou, Y.; Min, Y.; Zhang, B.; Zhang, J.; Dong, Z.; et al

    Zhao, W. X.; Zhou, K.; Li, J.; Tang, T.; Wang, X.; Hou, Y.; Min, Y.; Zhang, B.; Zhang, J.; Dong, Z.; et al. 2023. A survey of large language models. arXiv preprint arXiv:2303.18223

  31. [39]

    M.; Stiennon, N.; Wu, J.; Brown, T

    Ziegler, D. M.; Stiennon, N.; Wu, J.; Brown, T. B.; Radford, A.; Amodei, D.; Christiano, P.; and Irving, G. 2019. Fine-tuning language models from human preferences. arXiv preprint arXiv:1909.08593

Pith tools

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