Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

Once a Response, Always a Response: Detecting LLM-generated Text via Latent Prompt Restoration

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

Pith's one-line read A generic assistant-style prefix makes machine-written text give itself away, and the effect can be scored to detect AI text.

desk verdict EchoPrompt is IRM plus a hand-picked assistant prefix; the prefix-gain observation is real and useful, but the headline DetectRL numbers are inflated by benchmark-tuned prompt selection. read the letter →

arxiv 2608.05741 v1 pith:V5NK5LQT submitted 2026-08-06 cs.CL cs.AI

classification cs.CLcs.AI
keywords AI-generatedtextdetectionzero-shotlatentpromptrestorationassistant-styleprefixinstruction-tunedmodelsEcholikelihoodscoringmachineattribution
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

EchoPrompt claims that machine-written text carries a hidden trace of the prompt it was generated under: it was written as an assistant-style response. Because the original prompt is gone, earlier detectors miss this trace. EchoPrompt restores a generic assistant-response prefix and measures how much an instruction-tuned model's token probabilities rise relative to the untuned base model, averaging the gap into a single score. The paper reports that this score separates machine from human text better than existing zero-shot detectors, beating the strongest prior method by 0.69 AUROC and 2.64 F1 on average across DetectRL, RealDet, and RAID. A sympathetic reader would care because detection works without training data and survives attacks, length changes, and proxy-model swaps.

What carries the argument

The load-bearing object is the restored assistant-style context, a fixed task-agnostic prefix $c_g$ ("You are a helpful, versatile, and intelligent AI assistant...") chosen by preliminary experiments, together with the EchoPrompt score of Eq. (7): an average over tokens of the instruction-tuned model's log-likelihood of the text given the restored prefix minus the base model's log-likelihood of the raw text. The prefix does the work of reactivating a latent "this is a response" dependency; the base-model subtraction removes ordinary fluency; the average makes the signal stable at sequence level. A threshold on this score produces the final machine/human decision.

What would settle it

Take a held-out set of machine texts generated from user prompts that explicitly request non-assistant styles (for example, "write as a diary entry" or "write without an assistant voice"), prepend the chosen $c_g$, and measure the EchoPrompt score; if the machine-side gain does not exceed the human-side gain on such prompts, the latent prompt-restoration claim is falsified. More directly, replacing $c_g$ with any of the alternative prefixes from Appendix C and re-running the three benchmarks should make the reported AUROC edge shrink or vanish if the effect is an artifact of that specific wording.

Watch

Extended reading notes

Core claim

The central discovery is that the dependency of generated text on its upstream prompt is not erased when the prompt is removed: it can be partially reactivated by prepending a single fixed assistant-style opening. Formally, for tokens $x_1,\dots,x_n$, the EchoPrompt score is $\frac{1}{n-1}\sum_{t=2}^{n}(\log P_{\text{inst}}(x_t\mid c_g,x_{<t})-\log P_{\text{base}}(x_t\mid x_{<t}))$, where $c_g$ is the generic assistant prefix, $P_{\text{inst}}$ is an instruction-tuned proxy model, and $P_{\text{base}}$ is the same family's base model. The instruction-tuned term asks how naturally the text continues under a restored assistant-response context; the base-model term calibrates out ordinary fluency. The paper shows empirically that the gain from injecting $c_g$ is consistently larger for machine text than for human text across proxy families, and reports that the resulting score reaches the best zero-shot detection accuracy among the compared methods.

Load-bearing premise

The detector's edge rests on a single generic prefix whose wording was chosen on a 500-human/500-machine sample of one benchmark; if that prefix does not reactivate the hidden conditioning for other prompts, domains, or generators, EchoPrompt's advantage over IRM shrinks or disappears.

Editorial extensions

If this is right

  • Zero-shot AI-text detection can be built from prompt restoration alone, with no labeled data and no detector training.
  • The detector remains usable when the original prompt is unknown, which is the usual setting in practice.
  • Performance holds across attack types, text lengths, and proxy model families, with the largest gains on direct prompting, perturbation, and data mixing.
  • The method is fast enough for practical screening, with reported inference under 0.26 seconds per sample on the tested hardware.
  • The prompt-component ablation indicates the core signal comes from restoring the prompt–response relation, not merely from assigning the model an assistant role.

Reading between the lines

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

  • If the mechanism is real, a natural attack is to frame machine text with a human-style preamble before generation, which might reduce the machine-side gain; detectors should therefore be tested against adversarially chosen prefixes.
  • The dependence on a single hand-picked prefix suggests a testable extension: searching over prefixes per domain or per generator family could improve accuracy further, but it would need a selection protocol that avoids overfitting.
  • Because the score relies on instruction-tuning strength, it should degrade gracefully as base models become more assistant-like; comparing models with different post-training intensities could quantify that relationship.
  • The same latent-dependency signal may transfer to other conditional-generation artifacts, such as machine-translated or summarized text, where a "response to a source" dependency is also hidden.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The paper proposes EchoPrompt, a training-free detector for LLM-generated text. The method prepends a fixed assistant-style prefix c_g to an input passage, computes the average token-level log-likelihood gap between an instruction-tuned model on the restored sequence and its base model on the original text (Eq. 7), and thresholds this score. The authors motivate the score by the claim that machine-generated text retains a latent dependency on an assistant-response context, which can be reactivated by a generic prefix. Experiments on DetectRL, RealDet, and RAID report state-of-the-art results, including an average gain over IRM of 0.69 AUROC and 2.64 F1 with the Llama-3-8B proxy family, along with robustness analyses across attacks, proxy models, text lengths, and thresholds.

Significance. The proposed signal—latent prompt dependency measured by a calibrated likelihood gap—is interpretable and grounded in the post-training objective (Eq. 4). The evaluation is extensive: three public benchmarks, seven proxy families, five attack groups, length-binned analysis, and component ablations. If the reported gains are robust to properly held-out prefix selection, EchoPrompt would be a cheap, training-free, and broadly applicable detector with a clear mechanistic story. However, the headline improvement over IRM is not yet established because the root cause of the gain—the choice of c_g—is selected on a labeled subset of the main evaluation benchmark, which makes the zero-shot claim and the reported performance gains optimistically biased.

major comments (3)
  1. [Appendix C; Eq. (7)] The global prefix c_g that defines the EchoPrompt score is selected by maximizing AUROC on a 500+500 labeled subset of DetectRL Multi-Domain, and this same prefix is then used to produce all reported results on DetectRL (Tables 1, 2, and 9). The statement in Appendix C that the subset is used only for prompt selection 'rather than for reporting main detection performance' is not accurate, because the selected prefix is a component of the score reported in those tables. The claimed average gains over IRM (0.69 AUROC, 2.64 F1) are therefore optimistically biased by selection on the evaluation distribution. To substantiate the zero-shot claim, the authors must re-select c_g without access to DetectRL labels (e.g., on a disjoint development set or on a different benchmark) and report both the tuned and untuned results, or demonstrate that the relative ordering of candidate prefixes is stable across benchmarks.
  2. [Section 4.5; Figure 6] F1 scores throughout the paper are computed with the F1-optimal threshold τ* chosen on the test set itself, as described in the normalized-threshold analysis; no held-out threshold selection, cross-validation, or confidence intervals are reported. Because F1 is one of the two headline metrics, the reported 2.64-point average F1 improvement over IRM may partly reflect test-set threshold fitting. The authors should report F1 at a label-free threshold (e.g., a threshold chosen on a separate development set or the median of a calibration set) or provide bootstrapped confidence intervals and significance tests for the AUROC/F1 differences.
  3. [Section 3.3; Figure 2] The empirical evidence supporting the latent-prompt-dependency hypothesis—the claim that machine text receives a larger likelihood gain g(X; c_g) than human text under a restored prefix—is computed with the same c_g selected on the 500+500 DetectRL subset. This analysis therefore does not provide independent confirmation of the hypothesis; it shows only that the selected prefix discriminates on the benchmark from which it was chosen. Repeating the analysis with a prefix selected without reference to DetectRL, or with several randomly chosen prefixes, would strengthen the claim that the effect is a property of machine text rather than an artifact of prefix selection.
minor comments (5)
  1. [Figure 2] The y-axis label 'Base Prompt Gain g(X; c_g)' refers to Eq. (9), which is introduced later in Section 3.3; please define the quantity in the caption or move the definition earlier.
  2. [Section 3.2.1] Describing c_g as 'task-agnostic' is potentially misleading given that it was chosen by an empirical search over candidate prefixes; consider describing it as an empirically chosen default prefix.
  3. [Abstract and Section 4.2] The abstract's unqualified claim of 'state-of-the-art performance' is stronger than what the evidence supports; the main result is established only for the Llama-3-8B proxy family, and Table 9 shows that for some proxy families (e.g., Llama-3.2-1B) EchoPrompt does not beat IRM on average AUROC. Please qualify the claim accordingly.
  4. [Section 4.5] The normalized threshold τ̂ = τ*/σ_pool is not fully defined; please specify what σ_pool denotes and explain why the sign of τ̂ is method-dependent.
  5. [General] No code or reproducibility link is provided; adding a code repository would improve the paper's reproducibility.

Circularity Check

2 steps flagged · score 5.0 of 10

Reported DetectRL gains rest on a benchmark-selected prefix; the core prompt-restoration signal is fitted to the evaluation distribution rather than independently derived.

  1. fitted input called prediction [Appendix C (prefix selection) and Section 4.2, Table 1 (main results)]
    "We determine the global prefix c_g through preliminary empirical studies under a fixed EchoPrompt setting. Specifically, we compare different prompt types and semantically related prompt families using Qwen2.5-3B / Qwen2.5-3B-Instruct on 500 human and 500 machine samples from DetectRL Multi-Domain. This subset is used only for lightweight preliminary prompt selection rather than for reporting main detection performance."

    The prefix c_g is the load-bearing input of Eq. (7): without it the score reduces to the IRM score of Eq. (6). Choosing c_g by AUROC on a sample of DetectRL and then reporting Table 1 AUROC/F1 on DetectRL Multi-Domain, Multi-LLM, and Multi-Attack means the claimed 0.69 AUROC / 2.64 F1 average improvement over IRM partly encodes selection on the evaluation distribution. The method's central "latent prompt restoration" term is thus a benchmark-tuned fitted value rather than an independently derived first-principles quantity.

  2. fitted input called prediction [Section 3.3, Eq. (9), Figure 2, and Appendix D]
    "Figure 2 reports the average gain for human and machine text under the base models of four small proxy families, and Appendix D provides the detailed settings and values. A consistent pattern emerges: after the same generic prefix is injected, machine-generated text receives a larger likelihood gain than human-written text."

    This "empirical evidence of latent prompt dependency" measures g(X; c_g), the exact term that distinguishes EchoPrompt from IRM in Eq. (7), on DetectRL Multi-Domain and Multi-LLM (Appendix D) — the same benchmark from which c_g was selected by maximizing AUROC. The observed machine-vs-human gain difference is therefore re-observed on the selection distribution, not an independent confirmation of the hypothesis. RealDet and RAID later provide some out-of-distribution support, but the motivating evidence in Figure 2 does not.

full rationale

The paper is an empirical detection method, not a formal derivation, and there is no load-bearing self-citation chain: IRM [21] is an external baseline, and the overlapping-author works (RealDet, DNA-DetectLLM) appear only as benchmark/baselines. The central circularity is the fitted prefix c_g. It is selected on a 500+500 sample of DetectRL Multi-Domain by maximizing AUROC, and the headline results in Table 1 are then reported on DetectRL (Multi-Domain, Multi-LLM, Multi-Attack) as zero-shot predictions. Because the only novel term in Eq. (7) over IRM is the context-conditioned likelihood with c_g, part of the reported advantage necessarily reflects the selection distribution. The paper's own Appendix A concession that the prompt is not shown to be globally optimal supports this reading. Independent support does exist: RealDet and RAID use the same prefix without any selection on those benchmarks, and the prefix was fixed before those evaluations. This prevents the circularity from being total, but the main average gain over IRM is still partly fitted, so a moderate partial-circularity score is appropriate rather than 0 or 10.

Assumptions & free parameters 2 free parameters · 4 assumptions · 1 invented entities

The central claim rests on the existence of a reactivatable latent prompt dependency, the validity of the base model as a calibration reference, and the schematic post-training model. The main fitted component is the prefix c_g, tuned on a subset of DetectRL, plus the test-set threshold for F1 reporting.

free parameters (2)
  • Global assistant prefix c_g = You are a helpful, versatile, and intelligent AI assistant.
    Selected by maximizing AUROC on a 500+500 sample subset of DetectRL Multi-Domain (Appendix C, Tables 6-7); directly enters the score in Eq. (7).
  • Decision threshold tau = F1-optimal threshold on the evaluated test set (implied)
    The paper reports F1 scores and analyzes the F1-optimal threshold tau* (Section 4.5), which implies the threshold is selected on the test data, inflating reported F1.
assumptions (4)
  • domain assumption Machine-generated text retains a latent dependency on the original prompt that can be partially reactivated by a generic assistant-style prefix.
    Core hypothesis stated in Section 1 and Section 3.2.1; supported only by empirical gain analysis, not by a first-principles derivation.
  • domain assumption The base model's unconditional likelihood serves as a valid calibration that removes ordinary linguistic predictability.
    Stated in Section 3.2.2; no proof that the difference isolates prompt dependency rather than other base/instruct differences.
  • domain assumption Eq. (4) is a faithful schematic abstraction of the shared effect of SFT and preference-based post-training.
    The paper itself calls Eq. (4) a schematic abstraction (Section 3.1); the actual training objectives vary across model families.
  • domain assumption The instruction-tuned proxy model's probability under the restored context approximates the true generation probability under the unknown original prompt.
    Needed for the interpretation of the score in Eq. (7); not tested directly.
invented entities (1)
  • Latent prompt dependency independent evidence
    purpose: Explanatory construct for the observed difference in likelihood gain between machine and human text under a restored assistant prefix.
    The paper provides a falsifiable handle: the gain g(X; c_g) in Eq. (9), and reports consistent positive differences for machine text across four proxy families (Figure 2, Appendix D). It is a conceptual abstraction, not a physical entity.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Once a Response, Always a Response: Detecting LLM-generated Text via Latent Prompt Restoration." pith.science (2026). https://pith.science/paper/V5NK5LQT

@misc{pith2026260805741,
  author       = {Pith},
  title        = {Pith review of: Once a Response, Always a Response: Detecting LLM-generated Text via Latent Prompt Restoration},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/V5NK5LQT}},
  note         = {Machine review of arXiv:2608.05741}
}
read the original abstract

Large language models (LLMs) can generate fluent and convincing text at scale, creating growing risks for misinformation dissemination, educational misuse, and platform governance. These concerns make robust detection of machine-generated text increasingly necessary. Recent zero-shot detectors mainly exploit probability-based statistical discrepancies, but they do not explicitly account for the training process of LLMs, which leaves a distinct generation mechanism insufficiently modeled and limits detection robustness. To address this issue, we propose EchoPrompt, a training-free detector based on latent prompt restoration. Our key intuition is that machine-generated text is typically produced conditioned on an upstream prompt, and this hidden dependency can be partially reactivated by prepending a unified generic prefix. Specifically, EchoPrompt restores a generic assistant-response context, measures the induced likelihood gain with an instruction-tuned model, calibrates it against the corresponding base model, and aggregates the resulting differences into a score that quantifies latent prompt dependency. Extensive experiments show that EchoPrompt achieves state-of-the-art performance among zero-shot detectors while maintaining strong robustness across challenging evaluation settings.

Figures

Figures reproduced from arXiv: 2608.05741 by the authors.

Figure 1
Figure 1. Overview of EchoPrompt. reference for local linguistic predictability without the restored assistant-style conditioning. Based on this contrast, we define the EchoPrompt score as: ScoreEchoPrompt(X; cg) = 1 n − 1 Xn t=2 h log Pinst(xt | cg, x<t) − log Pbase(xt | x<t) i , (7) where X denotes the evaluated sequence and cg denotes the restored assistant-style prefix. The first term measures how naturally the passage is… view at source ↗
Figure 2
Figure 2. Prompt-induced contextual gain under a restored assistant-style prefix for the base models of four [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. Prompt-component ablation results. 1-40 41-80 81-120 121-160 161-200 201-240 241-280 281-320 321-360 Length Bin (Words) 0.70 0.75 0.80 0.85 0.90 0.95 1.00 AUROC Llama-3.2-1B 1-40 41-80 81-120 121-160 161-200 201-240 241-280 281-320 321-360 Length Bin (Words) Llama-3.2-3B 1-40 41-80 81-120 121-160 161-200 201-240 241-280 281-320 321-360 Length Bin (Words) Llama-3-8B EchoPrompt DNA-DetectLLM IRM Binoculars Fast-Detect… view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Length-binned AUROC variation of different [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 6
Figure 6. Figure 6: Normalized threshold trajectories across proxy models [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. EVIL-Detect for NLPCC 2026 Shared Task 6: LLM-Generated Text Detection

    cs.CL 2026-08 conditional novelty 4.0 of 10

    EVIL-Detect, a conflict-aware ensemble of edit-extent regression, zero-shot likelihood scoring, lexical statistics, and text rules, achieves 0.8888 macro-F1 and first place in NLPCC 2026 Shared Task 6 for Chinese thre...

Reference graph

Works this paper leans on

37 extracted references · 19 canonical work pages · cited by 1 Pith paper

  1. [1]

    Generating sentiment-preserving fake online reviews using neural language models and their human-and machine-based detection

    David Ifeoluwa Adelani, Haotian Mai, Fuming Fang, Huy H Nguyen, Junichi Yamagishi, and Isao Echizen. Generating sentiment-preserving fake online reviews using neural language models and their human-and machine-based detection. InInternational Conference on Advanced Information Networking and Applications, pages 1341–1354. Springer, 2020

  2. [2]

    Detecting fake news using machine learning: A systematic literature review.arXiv preprint arXiv:2102.04458, 2021

    Alim Al Ayub Ahmed, Ayman Aljabouh, Praveen Kumar Donepudi, and Myung Suh Choi. Detecting fake news using machine learning: A systematic literature review.arXiv preprint arXiv:2102.04458, 2021

  3. [3]

    The falcon series of open language models.arXiv preprint arXiv:2311.16867, 2023

    Ebtesam Almazrouei, Hamza Alobeidli, Abdulaziz Alshamsi, Alessandro Cappelli, Ruxandra Cojocaru, Mérouane Debbah, Étienne Goffinet, Daniel Hesslow, Julien Launay, Quentin Malartic, et al. The falcon series of open language models.arXiv preprint arXiv:2311.16867, 2023

  4. [4]

    Fast-detectgpt: Efficient zero-shot detection of machine-generated text via conditional probability curvature.arXiv preprint arXiv:2310.05130, 2023

    Guangsheng Bao, Yanbin Zhao, Zhiyang Teng, Linyi Yang, and Yue Zhang. Fast-detectgpt: Efficient zero-shot detection of machine-generated text via conditional probability curvature.arXiv preprint arXiv:2310.05130, 2023

  5. [5]

    Language models are few-shot learners

    Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. Advances in neural information processing systems, 33:1877–1901, 2020

  6. [6]

    Megha Chakraborty, S. M. Towhidul Islam Tonmoy, S. M. Mehedi Zaman, Krish Sharma, Niyar R. Barman, Chandan Gupta, Shreya Gautam, Tanay Kumar, Vinija Jain, Aman Chadha, Amit P. Sheth, and Amitava Das. Counter Turing test CT2: AI-generated text detection is not as easy as you may think—introducing AI detectability index.arXiv preprint arXiv:2310.05030, 2023

  7. [7]

    On the possibilities of ai-generated text detection.arXiv preprint arXiv:2304.04736, 2023

    Souradip Chakraborty, Amrit Singh Bedi, Sicheng Zhu, Bang An, Dinesh Manocha, and Furong Huang. On the possibilities of ai-generated text detection.arXiv preprint arXiv:2304.04736, 2023. 10

  8. [8]

    All that’s ‘human’is not gold: Evaluating human evaluation of generated text

    Elizabeth Clark, Tal August, Sofia Serrano, Nikita Haduong, Suchin Gururangan, and Noah A Smith. All that’s ‘human’is not gold: Evaluating human evaluation of generated text. InProceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long P...

Show all 37 references
  1. [9]

    Raid: A shared benchmark for robust evaluation of machine-generated text detectors

    Liam Dugan, Alyssa Hwang, Filip Trhlík, Andrew Zhu, Josh Magnus Ludan, Hainiu Xu, Daphne Ippolito, and Chris Callison-Burch. Raid: A shared benchmark for robust evaluation of machine-generated text detectors. InProceedings of the 62nd Annual Meeting of the Association for Comp...

  2. [10]

    Gltr: Statistical detection and visualization of generated text

    Sebastian Gehrmann, Hendrik Strobelt, and Alexander M Rush. Gltr: Statistical detection and visualization of generated text. InProceedings of the 57th annual meeting of the association for computational linguistics: system demonstrations, pages 111–116, 2019

  3. [11]

    The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024

    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, 2024

  4. [12]

    How close is chatgpt to human experts? comparison corpus, evaluation, and detection.arXiv preprint arXiv:2301.07597, 2023

    Biyang Guo, Xin Zhang, Ziyuan Wang, Minqi Jiang, Jinran Nie, Yuxuan Ding, Jianwei Yue, and Yupeng Wu. How close is chatgpt to human experts? comparison corpus, evaluation, and detection.arXiv preprint arXiv:2301.07597, 2023

  5. [13]

    Biscope: Ai-generated text detection by checking memorization of preceding tokens

    Hanxi Guo, Siyuan Cheng, Xiaolong Jin, Zhuo Zhang, Kaiyuan Zhang, Guanhong Tao, Guangyu Shen, and Xiangyu Zhang. Biscope: Ai-generated text detection by checking memorization of preceding tokens. Advances in Neural Information Processing Systems, 37:104065–104090, 2024

  6. [14]

    Detective: Detecting ai-generated text via multi-level contrastive learning.Advances in Neural Information Processing Systems, 37:88320–88347, 2024

    Xun Guo, Shan Zhang, Yongxin He, Ting Zhang, Wanquan Feng, Haibin Huang, and Chongyang Ma. Detective: Detecting ai-generated text via multi-level contrastive learning.Advances in Neural Information Processing Systems, 37:88320–88347, 2024

  7. [15]

    Spotting LLMs with binoculars: Zero-shot detection of machine-generated text

    Abhimanyu Hans, Avi Schwarzschild, Valeriia Cherepanova, Hamid Kazemi, Aniruddha Saha, Micah Goldblum, Jonas Geiping, and Tom Goldstein. Spotting LLMs with binoculars: Zero-shot detection of machine-generated text. In Ruslan Salakhutdinov, Zico Kolter, Katherine Heller, Adrian...

  8. [16]

    Unifying human and statistical evaluation for natural language generation

    Tatsunori B Hashimoto, Hugh Zhang, and Percy Liang. Unifying human and statistical evaluation for natural language generation. InProceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volu...

  9. [17]

    DETree: Detecting human–ai collaborative texts via tree-structured hierarchical representation learning

    Yongxin He, Shan Zhang, Yixuan Cao, Lei Ma, and Ping Luo. DETree: Detecting human–ai collaborative texts via tree-structured hierarchical representation learning. InAdvances in Neural Information Processing Systems, volume 38, 2025

  10. [18]

    Radar: Robust ai-text detection via adversarial learning

    Xiaomeng Hu, Pin-Yu Chen, and Tsung-Yi Ho. Radar: Robust ai-text detection via adversarial learning. Advances in neural information processing systems, 36:15077–15095, 2023

  11. [19]

    Automatic detection of generated text is easiest when humans are fooled

    Daphne Ippolito, Daniel Duckworth, Chris Callison-Burch, and Douglas Eck. Automatic detection of generated text is easiest when humans are fooled. InProceedings of the 58th annual meeting of the association for computational linguistics, pages 1808–1822, 2020

  12. [20]

    Mage: Machine-generated text detection in the wild

    Yafu Li, Qintong Li, Leyang Cui, Wei Bi, Zhilin Wang, Longyue Wang, Linyi Yang, Shuming Shi, and Yue Zhang. Mage: Machine-generated text detection in the wild. InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pa...

  13. [21]

    Zero-shot detection of llm-generated text via implicit reward model.arXiv preprint arXiv:2604.21223, 2026

    Runheng Liu, Heyan Huang, Xingchen Xiao, and Zhijing Wu. Zero-shot detection of llm-generated text via implicit reward model.arXiv preprint arXiv:2604.21223, 2026. 11

  14. [22]

    Meta Llama 3.1 model card

    Meta. Meta Llama 3.1 model card. https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct,

  15. [23]

    Meta Llama 3.2 model card.https://github.com/meta-llama/llama-models/blob/main/models/ llama3_2/MODEL_CARD.md, 2024

    Meta. Meta Llama 3.2 model card.https://github.com/meta-llama/llama-models/blob/main/models/ llama3_2/MODEL_CARD.md, 2024. Official model card

  16. [24]

    Meta Llama 3 model card.https://github.com/meta-llama/llama-models/blob/main/models/ llama3/MODEL_CARD.md, 2024

    Meta. Meta Llama 3 model card.https://github.com/meta-llama/llama-models/blob/main/models/ llama3/MODEL_CARD.md, 2024. Official model card

  17. [25]

    Detectgpt: Zero-shot machine-generated text detection using probability curvature

    Eric Mitchell, Yoonho Lee, Alexander Khazatsky, Christopher D Manning, and Chelsea Finn. Detectgpt: Zero-shot machine-generated text detection using probability curvature. InInternational conference on machine learning, pages 24950–24962. PMLR, 2023

  18. [26]

    Training language models to follow instructions with human feedback.Advances in neural information processing systems, 35:27730–27744, 2022

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback.Advances in neural information processing systems, 35:27730...

  19. [27]

    Direct preference optimization: Your language model is secretly a reward model.Advances in neural information processing systems, 36:53728–53741, 2023

    Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model.Advances in neural information processing systems, 36:53728–53741, 2023

  20. [28]

    Release strategies and the social impacts of language models.arXiv preprint arXiv:1908.09203, 2019

    Irene Solaiman, Miles Brundage, Jack Clark, Amanda Askell, Ariel Herbert-Voss, Jeff Wu, Alec Radford, Gretchen Krueger, Jong Wook Kim, Sarah Kreps, et al. Release strategies and the social impacts of language models.arXiv preprint arXiv:1908.09203, 2019

  21. [29]

    Deep kernel relative test for machine-generated text detection

    Yiliao Song, Zhenqiao Yuan, Shuhai Zhang, Zhen Fang, Jun Yu, and Feng Liu. Deep kernel relative test for machine-generated text detection. InThe Thirteenth International Conference on Learning Representations, 2025

  22. [30]

    Detectllm: Leveraging log rank information for zero-shot detection of machine-generated text

    Jinyan Su, Terry Zhuo, Di Wang, and Preslav Nakov. Detectllm: Leveraging log rank information for zero-shot detection of machine-generated text. InFindings of the Association for Computational Linguistics: EMNLP 2023, pages 12395–12412, 2023

  23. [31]

    Authorship attribution for neural text generation

    Adaku Uchendu, Thai Le, Kai Shu, and Dongwon Lee. Authorship attribution for neural text generation. InProceedings of the 2020 conference on empirical methods in natural language processing (EMNLP), pages 8384–8395, 2020

  24. [32]

    Attention is all you need.Advances in neural information processing systems, 30, 2017

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need.Advances in neural information processing systems, 30, 2017

  25. [33]

    Detectrl: Benchmarking llm-generated text detection in real-world scenarios.Advances in Neural Information Processing Systems, 37:100369–100401, 2024

    Junchao Wu, Runzhe Zhan, Derek F Wong, Shu Yang, Xinyi Yang, Yulin Yuan, and Lidia S Chao. Detectrl: Benchmarking llm-generated text detection in real-world scenarios.Advances in Neural Information Processing Systems, 37:100369–100401, 2024

  26. [34]

    Training-free llm-generated text detection by mining token probability sequences.arXiv preprint arXiv:2410.06072, 2024

    Yihuai Xu, Yongwei Wang, Yifei Bi, Huangsen Cao, Zhouhan Lin, Yu Zhao, and Fei Wu. Training-free llm-generated text detection by mining token probability sequences.arXiv preprint arXiv:2410.06072, 2024

  27. [35]

    Qwen2.5 technical report.arXiv preprint arXiv:2412.15115, 2024

    An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, Huan Lin, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Yang, Jiaxi Yang, Jingren Zhou, Junyang Lin, Kai Dang, Keming Lu, Keqin Bao, Kexin Yang, Le Yu, Me...

  28. [36]

    Reliably bounding false positives: A zero-shot machine-generated text detection framework via multiscaled conformal prediction

    Xiaowei Zhu, Yubing Ren, Yanan Cao, Xixun Lin, Fang Fang, and Yangxi Li. Reliably bounding false positives: A zero-shot machine-generated text detection framework via multiscaled conformal prediction. InProceedings of the 63rd Annual Meeting of the Association for Computationa...

  29. [37]

    You are a helpful and reliable AI assistant. Answer clearly and avoid unsupported claims

    Xiaowei Zhu, Yubing Ren, Fang Fang, Qingfeng Tan, Shi Wang, and Yanan Cao. Dna-detectllm: Unveiling ai-generated text via a dna-inspired mutation-repair paradigm.arXiv preprint arXiv:2509.15550, 2025. A Limitations Like other zero-shot detectors, EchoPrompt still depends on th...

Pith tools

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