Pith. sign in

REVIEW 3 major objections 4 minor 23 references

Mind the Quote: Enabling Quotation-Aware Dialogue in LLMs via Plug-and-Play Modules

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

Pith's one-line read QuADA adds two bottleneck projections to every attention head so that a frozen LLM learns to raise or lower attention exactly on quoted spans, and training on synthetic quotation dialogues makes it outperform existing span-injection…

desk verdict Useful new task framing plus a plausible attention adapter, but the headline numbers rest on a benchmark generated by the same pipeline used for training — needs independent validation before the results can be trusted. read the letter →

arxiv 2505.24292 v1 pith:DQE24T5C submitted 2025-05-30 cs.AI cs.CL

classification cs.AIcs.CL
keywords quotation-awaredialoguespan-conditionedgenerationattentionsteeringparameter-efficientadapterssyntheticdataLLMbenchmarkcoreferenceresolution
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that everyday dialogue regularly quotes earlier text, as in “check it with the formula I just highlighted,” and that current LLMs have no explicit mechanism to honour such references. It formalises quoting as span-conditioned generation, where each turn is a conversation history, a set of token-offset spans being quoted, and a user intent. To support this, it builds an automated five-stage pipeline that synthesises dialogues, verifies answers with consistency checks, and yields a five-scenario benchmark covering single-quote, multi-quote, ignore/negative spans, quote-plus-context, and coreference. The proposed QuAda method attaches two bottleneck projections to every attention head, learns to amplify or suppress attention on quoted spans during training, and at inference takes the spans as input while leaving the prompt unchanged. The paper reports that QuAda beats all baselines, including trained variants of copy-paste, marker insertion, and static attention steering, on all five scenarios across model families and scales.

What carries the argument

The central object is a token-offset quotation mask, $R=\{(s_l,e_l)\}$, marking spans in the conversation history, together with the starting token $s_q$ of the user's latest utterance. For every attention head, QuAda inserts two bottleneck projections $E_q$ and $E_v$. On the query side, for tokens after $s_q$ it adds a bias $b_i=E_q(q_i)$ only when attending into a quoted span, changing the score from $q_i^\top k_j$ to $(q_i+\mathbf{1}_{j\in R} b_i)^\top k_j$; on the value side, it enriches each quoted token's value to $v_j+\mathbf{1}_{j\in R}E_v(v_j)$. Only these bottlenecks are trained, the backbone stays frozen, and at inference the span masks are supplied alongside the unchanged prompt. The other load-bearing piece is the five-stage data pipeline, whose Step 4 enforces span sufficiency and necessity by converting candidate answers into multiple-choice options and checking that the generator can answer with the spans and fails without them.

What would settle it

Independently hand-verify a random sample of all five benchmark subsets rather than only LLM-flagged items, then re-score Vanilla, Concat-Repeat, and QuAda on the corrected labels; if the method ordering changes or QuAda's margin shrinks below the baselines, the synthetic verification step is the source of the reported win.

Watch

Extended reading notes

Core claim

The central claim is that quotation awareness is a distinct, trainable capability rather than something hand-crafted prompting can supply. On Qwen2.5-3B-Instruct, QuAda scores 95.2%, 94.6%, 92.8%, 85.8%, and 90.2% accuracy on the Base, Multi-Span, Exclude, Info-Combine, and Coref scenarios, and on Llama3.1-8B-Instruct it scores 96.0%, 98.2%, 93.2%, 82.6%, and 94.8%. The paper reports that untrained baselines, and even trained marker or concat variants, collapse on at least one scenario, showing that span-conditioned behavior requires learned position-aware modulation. QuAda leaves the original prompt untouched, updates only the adapter weights (under 2.8% of the backbone), preserves fluency, and produces attention heatmaps in which quoted bands are highlighted in Base and Multi-Span, suppressed in Exclude, and selectively combined with context in Info-Combine.

Load-bearing premise

The load-bearing premise is that the LLM-generated and LLM-verified benchmark answers are correct and representative; if the generator-verifier loop is biased, every reported accuracy, including QuAda's, is inflated. The human audit only inspects LLM-flagged cases, and the human-curated reference benchmark is itself a filtered subset of the same synthetic pipeline, so this premise is not independently checked.

Editorial extensions

If this is right

  • A chat interface that lets users highlight text and type “explain this” or “ignore this” could pass the selection as span offsets, so no prompt rewriting or copied text is needed.
  • Because QuAda tunes under 2.8% of the weights and keeps the backbone frozen, the skill can be added to deployed 3B–8B models with modest training cost.
  • Training on topics disjoint from the benchmark means the model is learning the quoting operation rather than memorising content, and the paper reports generalisation to unseen topics.
  • The five benchmark scenarios give builders a ready-made checklist for quotation handling: single quote, multiple quotes, negative quotes, quote-with-context, and pronoun-coreferent quotes.

Reading between the lines

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

  • Editorial: because the mechanism only needs token offsets, the same adapters could apply to quoted table cells, code snippets, or image regions once a UI maps selections to offsets; the paper itself only tests English text spans.
  • Editorial: QuAda's span mask could be produced by an external retriever in retrieval-augmented generation, turning it into a lightweight grounding method that does not alter the prompt.
  • Editorial: a natural stress test the paper does not run is overlapping or nested quotations, where the binary in/out indicator gives conflicting signals; such cases may need a graded rather than binary mask.
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 / 4 minor

Summary. The paper formalizes quotation in conversation as span-conditioned generation, representing each user turn as the dialogue history H, a set of token-offset quotation spans R, and an intent utterance U, and requiring an answer conditioned on (H, R, U). It defines five diagnostic scenarios (Base, Multi-Span, Exclude, Info-Combine, Coref) and an LLM-based pipeline that synthesizes conversations, quotations, questions, and answers, filters them with automatic sufficiency/necessity checks, and human-audits flagged items. On the resulting benchmark it evaluates untrained and trainable Concat-Repeat, Marker-Insertion, and PASTA baselines, and proposes QuAda, which attaches two bottleneck projections to every attention head to modulate query-side attention and value-side representations of quoted tokens, leaving the prompt unchanged and updating 2.8% (Qwen-3B) or 1.6% (Llama-8B) of backbone weights. Tables 4 and 5 report QuAda accuracy of 82.6–98.2% across scenarios on both backbones, well above the baselines; ablations show both branches contribute and width robustness; scale experiments on Qwen 1.5B–14B show monotonic gains; and a human-curated reference subset correlates with the automatic benchmark above 0.82. The central claim is that QuAda is an effective, parameter-efficient, prompt-free solution for quotation-aware dialogue that generalizes to unseen topics.

Significance. The contribution is useful if the evaluation holds. The problem is clearly identified and cleanly abstracted; QuAda is simple, concrete, and verifiable, with parameter counts consistent with the stated bottlenecks; and the disjoint train/test topic split is a sound way to test skill acquisition rather than memorization. The Coref scenario is anchored by external CONLL-2012 gold spans, the attention heatmaps link the mechanism to its claimed effect, and the paper promises release of code, data, and prompts. The main risk is that the benchmark gold labels are produced by the same LLM pipeline used to create the training corpus, with human audit applied only to LLM-flagged items, so the absolute accuracies and the SOTA claim are only as trustworthy as the generator-verifier loop; an independent validation path is needed before the headline numbers can be taken at face value. The authors' explicit acknowledgement of the monomodal, monolingual scope is appropriately cautious.

major comments (3)
  1. [§3.1 (Steps 3–5), §4.3] The benchmark's gold labels are produced by the same LLM pipeline that generates the training data, and the final items are not all human-verified. §3.1 Step 4 has the generator LLM itself verify span sufficiency and necessity, and Step 5 has human annotators inspect only items that an LLM flags below a threshold; items that pass the automatic filters are accepted without item-level human review. The human-curated reference benchmark of §4.3 is a filtered and adjusted subset of the same pipeline, so the Pearson correlations in Table 6 (0.82–0.97) show that models rank similarly on two versions of the same generator/verifier output; they cannot detect systematic generator bias in the gold answers. Because QuAda is trained on this distribution, the large margins over baselines in Tables 4 and 5 could partly reflect pipeline-specific regularities (e.g., distractor phrasing or option leakage) rather than quotation awareness. The Coref scenario is less exposed because its spans come from CONLL-2012, but its questions and answers are still pipeline-generated. Please add an independent validation path: item-level human verification of a random sample of non-flagged items with inter-annotator agreement reported, or a benchmark generated and verified by a different model family than the one used for training, or a human-authored test set. Also report the fraction of items flagged by the LLM in Step 5 and the correction/discard rate.
  2. [§4.1, Tables 4–8] All numbers in Tables 4, 5, 7, and 8 are single-run point estimates, with no standard deviations, number of seeds, or significance tests. The headline ordering of QuAda above all baselines is supported by large margins (5 to 37 accuracy points), but the paper's finer claims rest on small differences: the conclusion that full QuAda beats value-only by +10.8% on Info-Combine (Table 7) and the choice of r=256 as the default (Table 8, where r=64 and r=256 differ by at most 3 points on any scenario) are not interpretable without variance information. Please report means and standard deviations over at least three seeds for the main tables, or a paired test for the ablation comparisons.
  3. [§4.1] The baseline set omits a natural strong competitor: fine-tuning the backbone (e.g., with LoRA) on the same training corpus with the quoted spans supplied explicitly, either through a textual list of spans in the instruction or through boundary markers. Such a baseline would test whether the attention-steering machinery is necessary, or whether ordinary fine-tuning on span-annotated data already captures most of the gains; it would also sharpen the claimed advantage of QuAda's zero prompt overhead. Please add this comparison or justify its absence.
minor comments (4)
  1. [§4.2] The claim that 'GPT-4o-mini judge is unbiased in our experiment' is stronger than the evidence: a Pearson correlation of 0.75 on 25 randomly selected samples per scenario (125 total), with no per-scenario breakdown, no inter-annotator agreement, and no statement of how many human annotators participated. Please report quadratic weighted kappa or a similar agreement statistic, per-scenario correlations, and annotator counts, and soften the 'unbiased' wording accordingly.
  2. [§3.1 Step 2] Step 2 lists five generator models (o1, o1-mini, o3-mini, GPT-4o, Qwen-plus), but the paper does not state which model generates which portion of the data, nor whether the Step 4 verifier is the same model as the generator. This matters for assessing the self-verification concern in the first major comment; please specify the exact model used at each stage of the pipeline.
  3. [§4.3] The description of the human-curated reference benchmark does not report the number of curated samples per scenario, the number of annotators, or the criteria used for filtering and adjusting the auto-generated items. These details are needed to assess the strength of the correlations in Table 6.
  4. [Figure 3 caption] The caption contains typos: 'Muilti-Span' should be 'Multi-Span', 'Prev-ConversationQuestion & Generation' is missing spaces, and 'adjusted byQUADA' is missing a space after 'by'.

Circularity Check

1 steps flagged · score 2.0 of 10

No derivation-level circularity; QuAda's gains are empirical and held-out topics plus CONLL-2012 provide independent grounding. One minor circular validation: the human-curated reference benchmark is a subset of the auto-generated benchmark.

  1. other [Section 4.3 (Validity of the Auto-Generated Benchmark)]
    "To assess how well our synthetic benchmark reflects real-world citation behaviour, we manually curated a reference benchmark by filtering and adjusting a subset of samples for each scenario and question type. We then evaluated 10 diverse models (from Qwen, Llama, Phi families, etc.) on both the auto-generated and human-curated benchmarks, and computed the Pearson correlation between their scores."

    The human-curated reference benchmark is not an independent source: it is obtained by filtering and adjusting a subset of the auto-generated benchmark samples. The Pearson correlations in Table 6 therefore compare the pipeline's output with a modified subset of itself; any systematic bias in the LLM generator-verifier loop (e.g., in gold-label construction or option design) is present in both versions and cannot be detected by this agreement. The benchmark-validity argument thus reduces to self-consistency of the same generation pipeline, rather than providing independent evidence that the synthetic gold labels are correct.

full rationale

The central derivation of QuAda is not circular. The method's trainable bottleneck projections are defined independently of the benchmark (Eqs. 5-6); its superiority over CONCAT-REPEAT, MARKER-INSERTION, and PASTA variants is an empirical result on held-out topics, not a consequence of the definitions. The training and benchmark sets share the same LLM synthesis pipeline, which is a real external-validity threat, but it is not a by-construction reduction: QuAda's parameters are optimized on the training split and evaluated on a separate benchmark split with disjoint topics (67 train / 35 test), and the Coref scenario additionally draws gold pronoun-antecedent spans from the external CONLL-2012 corpus. The automatic validity checks in Step 4 (span sufficiency/necessity) filter the data but do not mathematically force QuAda's accuracy numbers. The only self-referential element I find is the benchmark-validation argument in Section 4.3. The 'human-curated reference benchmark' is created by filtering and adjusting a subset of the same auto-generated benchmark, so the high Pearson correlations in Table 6 compare a set with a modified subset of itself. This cannot validate the absolute correctness of the LLM-produced gold labels; it only shows relative consistency within one pipeline. Step 5's human audit also inspects only LLM-flagged cases, so the 'human-verified' claim is weaker than stated. These are benchmark-validity limitations, not circular derivations of QuAda's mechanism. Accordingly, the overall circularity score is low: 2.

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

No new physical entities. The only introduced components are the QuAda bottleneck adapters and the span-conditioned generation task formulation, both of which are software constructs rather than postulated entities.

free parameters (1)
  • bottleneck width r (default 256) = 256
    Selected after ablations in Table 8; used for both query and value bottleneck MLPs. Larger widths (r=512) give marginal gains, smaller (r=64) already strong, so r=256 is a hand-tuned compromise between accuracy and parameter count.
assumptions (3)
  • domain assumption LLM-generated conversations and answers from the pipeline are factually correct and diverse enough to train and evaluate quotation behaviour.
    Used throughout Section 3.1, especially Step 4 validity checks; if generator LLMs produce biased or erroneous data, training and benchmark scores are compromised.
  • domain assumption Token-offset quotation spans are available and accurate at inference time; the paper does not address automatic span detection.
    QuAda and all baselines take R as input (Sections 2.1 and 3.2); real-world use would require a quotation localiser that this work does not provide.
  • domain assumption Attention modulation through query-side bias and value-side enrichment is sufficient to implement span-conditioned behaviour in frozen LLMs.
    This is the core design hypothesis of QuADA (Section 3.2, Equations 5 and 6); if frozen-backbone adapters cannot reliably encode span-level instructions, the method fails.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Mind the Quote: Enabling Quotation-Aware Dialogue in LLMs via Plug-and-Play Modules." pith.science (2026). https://pith.science/paper/DQE24T5C

@misc{pith2026250524292,
  author       = {Pith},
  title        = {Pith review of: Mind the Quote: Enabling Quotation-Aware Dialogue in LLMs via Plug-and-Play Modules},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/DQE24T5C}},
  note         = {Machine review of arXiv:2505.24292}
}
read the original abstract

Human-AI conversation frequently relies on quoting earlier text-"check it with the formula I just highlighted"-yet today's large language models (LLMs) lack an explicit mechanism for locating and exploiting such spans. We formalise the challenge as span-conditioned generation, decomposing each turn into the dialogue history, a set of token-offset quotation spans, and an intent utterance. Building on this abstraction, we introduce a quotation-centric data pipeline that automatically synthesises task-specific dialogues, verifies answer correctness through multi-stage consistency checks, and yields both a heterogeneous training corpus and the first benchmark covering five representative scenarios. To meet the benchmark's zero-overhead and parameter-efficiency requirements, we propose QuAda, a lightweight training-based method that attaches two bottleneck projections to every attention head, dynamically amplifying or suppressing attention to quoted spans at inference time while leaving the prompt unchanged and updating < 2.8% of backbone weights. Experiments across models show that QuAda is suitable for all scenarios and generalises to unseen topics, offering an effective, plug-and-play solution for quotation-aware dialogue.

Figures

Figures reproduced from arXiv: 2505.24292 by the authors.

Figure 1
Figure 1. Illustrative examples of the five quotation scenarios. [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of QUADA. Let qi , kj , vj ∈ R d denote the query, key, and value vectors of a single attention head at positions i and j (j ≤ i), and d represents the dimensionality of the attention head. At inference time, compared with the non-trained methods, the model additionally receives the token-level span of the quotations and the user inputs: R = {(sl , el)| 1 ≤ sl ≤ el ≤ n, l ∈ N} , and Q = (sq, . . .), (3) whe… view at source ↗
Figure 3
Figure 3. Averaged attention maps adjusted by QUADA. Attention scores are averaged and normalized over all attention heads. Red rectangles highlight the quotation span(s), while darker colours indicate stronger attention. Evaluation metrics Each subset is paired with a metric that matches its output structure: We employ two metrics to assess these methods. Accuracy (Acc) for the single-choice questions. A prediction is correc… view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Impact of backbone model size on QUADA performance across the Qwen 2.5 series models. 8 [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

23 extracted references · 6 canonical work pages

  1. [3]

    Inspecting and editing knowledge representations in language models

    Evan Hernandez, Belinda Z Li, and Jacob Andreas. Inspecting and editing knowledge representations in language models. arXiv preprint arXiv:2304.00740,

  2. [4]

    Gpt-4o system card

    Aaron Hurst, Adam Lerer, Adam P Goucher, Adam Perelman, Aditya Ramesh, Aidan Clark, AJ Os- trow, Akila Welihinda, Alan Hayes, Alec Radford, et al. Gpt-4o system card. arXiv preprint arXiv:2410.21276,

  3. [5]

    Openai o1 system card.arXiv preprint arXiv:2412.16720,

    Aaron Jaech, Adam Kalai, Adam Lerer, Adam Richardson, Ahmed El-Kishky, Aiden Low, Alec Helyar, Aleksander Madry, Alex Beutel, Alex Carney, et al. Openai o1 system card.arXiv preprint arXiv:2412.16720,

  4. [6]

    Cutting off the head ends the conflict: A mechanism for interpreting and mitigating knowledge conflicts in language models

    Zhuoran Jin, Pengfei Cao, Hongbang Yuan, Yubo Chen, Jiexin Xu, Huaijun Li, Xiaojian Jiang, Kang Liu, and Jun Zhao. Cutting off the head ends the conflict: A mechanism for interpreting and mitigating knowledge conflicts in language models. arXiv preprint arXiv:2402.18154,

  5. [7]

    Evaluating open-domain question answering in the era of large language models

    Ehsan Kamalloo, Nouha Dziri, Charles LA Clarke, and Davood Rafiei. Evaluating open-domain question answering in the era of large language models. arXiv preprint arXiv:2305.06984,

  6. [8]

    Style vectors for steering generative large language model

    Kai Konen, Sophie Jentzsch, Diaoulé Diallo, Peer Schütt, Oliver Bensch, Roxanne El Baff, Dominik Opitz, and Tobias Hecking. Style vectors for steering generative large language model. arXiv preprint arXiv:2402.01618,

  7. [9]

    Can LLMs Understand the Implication of Emphasized Sentences in Dialogue?

    Guan-Ting Lin and Hung-yi Lee. Can llms understand the implication of emphasized sentences in dialogue? arXiv preprint arXiv:2406.11065,

  8. [10]

    In-context vectors: Making in context learning more effective and controllable through latent space steering

    Sheng Liu, Haotian Ye, Lei Xing, and James Zou. In-context vectors: Making in context learning more effective and controllable through latent space steering. arXiv preprint arXiv:2311.06668,

Show all 23 references
  1. [11]

    org/abs/2406.15126,

    URL https://arxiv. org/abs/2406.15126,

  2. [12]

    Deepseek-r1 thoughtology: Let’s <think> about llm reasoning

    Sara Vera Marjanovi´c, Arkil Patel, Vaibhav Adlakha, Milad Aghajohari, Parishad BehnamGhader, Mehar Bhatia, Aditi Khandelwal, Austin Kraft, Benno Krojer, Xing Han Lù, et al. Deepseek-r1 thoughtology: Let’s <think> about llm reasoning. arXiv preprint arXiv:2504.07128,

  3. [16]

    An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, et al. Qwen2. 5 technical report. arXiv preprint arXiv:2412.15115,

  4. [17]

    Yue Yu, Yuchen Zhuang, Jieyu Zhang, Yu Meng, Alexander J Ratner, Ranjay Krishna, Jiaming Shen, and Chao Zhang

    Accessed: 2025-05-09. Yue Yu, Yuchen Zhuang, Jieyu Zhang, Yu Meng, Alexander J Ratner, Ranjay Krishna, Jiaming Shen, and Chao Zhang. Large language model as attributed training data generator: A tale of diversity and bias. Advances in Neural Information Processing Systems, 36:...

  5. [18]

    Tell your model where to attend: Post-hoc attention steering for llms

    Qingru Zhang, Chandan Singh, Liyuan Liu, Xiaodong Liu, Bin Yu, Jianfeng Gao, and Tuo Zhao. Tell your model where to attend: Post-hoc attention steering for llms. arXiv preprint arXiv:2311.02262,

  6. [19]

    Zifan Zheng, Yezhaohui Wang, Yuxin Huang, Shichao Song, Mingchuan Yang, Bo Tang, Feiyu Xiong, and Zhiyu Li

    URL https://arxiv.org/abs/2409.10790. Zifan Zheng, Yezhaohui Wang, Yuxin Huang, Shichao Song, Mingchuan Yang, Bo Tang, Feiyu Xiong, and Zhiyu Li. Attention heads of large language models: A survey. arXiv preprint arXiv:2409.03752,

  7. [20]

    Focus directions make your language models pay more attention to relevant contexts

    Youxiang Zhu, Ruochen Li, Danqing Wang, Daniel Haehn, and Xiaohui Liang. Focus directions make your language models pay more attention to relevant contexts. arXiv preprint arXiv:2503.23306,

  8. [21]

    retrieval heads

    11 A Related Works A.1 Attention-Guided Generation in Decoder-Only LLMs A growing body of mechanistic-interpretability work shows that individual self-attention heads specialise in distinct generative roles[Zheng et al., 2024]. For instance, “retrieval heads” that gather long-...

  9. [22]

    i n s t r u c t i o n

    Output your final rating as : Score X where X is the chosen number , and do not add any other text , marker or e x p l a n a t i o n in your response . Ground Truth : { gt_label } Model Answer : { predict } D Examples for the input samples D.1 Multi-Choice Question Examples Ba...

  10. [1998]

    if it didn ’ t adopt good economic policies , the economy would continue to be in negative growth .\

    The sta te me nt sp ec if ie s that \" if it didn ’ t adopt good economic policies , the economy would continue to be in negative growth .\" Here , \" it \" lo gi ca ll y refers to \" Japan ’ s economy ,\" as the p rec ed in g d i s c u s s i o n is about Japan ’ s economic st...

  11. [2012]

    Extracting latent steering vectors from pretrained language models

    Nishant Subramani, Nivedita Suresh, and Matthew E Peters. Extracting latent steering vectors from pretrained language models. arXiv preprint arXiv:2205.05124,

  12. [2022]

    Activation addition: Steering language models without optimization

    10 Alexander Matt Turner, Lisa Thiergart, Gavin Leech, David Udell, Juan J Vazquez, Ulisse Mini, and Monte MacDiarmid. Activation addition: Steering language models without optimization. arXiv e-prints, pages arXiv–2308, 2023a. Alexander Matt Turner, Lisa Thiergart, Gavin Leec...

  13. [2023]

    The llama 3 herd of models

    Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783,

  14. [2024]

    A survey on llm-as-a-judge

    Jiawei Gu, Xuhui Jiang, Zhichao Shi, Hexiang Tan, Xuehao Zhai, Chengjin Xu, Wei Li, Yinghan Shen, Shengjie Ma, Honghao Liu, et al. A survey on llm-as-a-judge. arXiv preprint arXiv:2411.15594,

  15. [2025]

    Conll- 2012 shared task: Modeling multilingual unrestricted coreference in ontonotes

    Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Olga Uryupina, and Yuchen Zhang. Conll- 2012 shared task: Modeling multilingual unrestricted coreference in ontonotes. In Joint conference on EMNLP and CoNLL-shared task, pages 1–40,

Pith tools

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