The Self-Generated Question Becomes the Training Policy
Ekaterina Alimaskina, Denis Shveykin, Gleb Molodtsov, Igor Shalygin, Alexey Kadeishvili, and Aleksandr Beznosikov's 2026 paper Self-Study Reconsidered: The Hidden Fragility of Learning from Self-Generated QA studies a quiet step in model training: before a document becomes synthetic supervision, another model decides what to ask about it and how to answer from it.
Preprocessing Has Agency
Synthetic question-answer supervision looks tidy from a distance. A model reads a document chunk, generates questions or requests about that chunk, answers them from the same text, and the resulting pairs are used to fine-tune, distill, or compress knowledge into another model. The pipeline can turn raw documents into training examples at scale. That convenience is exactly why it needs governance.
The paper, arXiv:2606.32002, was submitted on June 30, 2026 and is listed under Artificial Intelligence with Machine Learning as a cross-list. Its central claim is that QA generation is not neutral preprocessing. It is an evidence-selection policy. Whatever the generator asks about becomes training signal. Whatever it ignores may never be practiced. The selection step therefore has power over what the later model learns, even before optimization begins.
This page is not another general warning about prompt worms or runtime prompt-injection monitors. The risk here is upstream. A harmful or noisy source does not have to compromise a deployed agent directly. It can shape the synthetic lesson that later trains or compresses a model.
What the Paper Measures
The authors study question generation through an "evidence footprint": for each generated interaction, they use Qwen3-32B to extract supporting spans from the source chunk. In the experimental HTML, they keep the Cartridges self-study setup and use three document collections: the Cartridges paper, LongHealth, and QASPER. They report default generation budgets of 4K interactions for Cartridges and 65K for LongHealth and QASPER, with five prompt seeds: creative, question, structuring, summarization, and use-case.
The finding is not that question generation covers nothing. It can cover large portions of a document. The problem is that coverage saturates and repeats. Later interactions increasingly revisit already covered spans. Prompt diversity helps, but different seeds still converge on shared regions. In governance terms, the generator is not a neutral sampler. It has a taste for locally salient text.
That matters because a synthetic QA dataset can look fluent, grounded, and useful while overrepresenting the same hotspots. A training run may then inherit a narrow reading of the source corpus while appearing to have studied the whole thing.
When the Source Talks Back
The second failure mode is sharper. The answering model reads the same source chunk that the generated question came from. If that chunk contains instruction-like passages, the paper reports that the answering model can treat them as behavioral constraints rather than mere source text. The authors test instruction compliance across corpora, prompt seeds, instruction types, and six instruction-tuned models, including Qwen3, Llama3.1, and Gemma3 variants.
The abstract reports that compliance depends on intent and surface form more than strictness, and is worst under task conflict. It also reports that filtering instruction-like spans before answering lowers mean injection compliance from 88% to 13% while retaining nearly all clean text. The paper also finds that tying questions to fixed targets reduces biased evidence selection.
The lesson is practical: synthetic data generation is a data-ingestion attack surface. A passage that looks like an instruction can become part of the model's lesson if the generator and answerer are allowed to treat document text as both evidence and authority.
Evidence and Limits
The paper should not be read as proof that all synthetic QA is defective. It studies particular self-study procedures, corpora, prompts, and model families. It also evaluates lightweight procedural defenses rather than a complete training-governance system. That is still enough to change the audit question.
The question is no longer "were the generated answers plausible?" It is "who selected the question target, what source span supported it, which prompt seed was used, whether the source contained instruction-like text, which spans were filtered, and what evidence proves the final pair teaches the intended content rather than an artifact of the source?"
Operational Use
A production pipeline that uses self-generated QA should log the document identifier, chunking rule, generator model, generator prompt, prompt seed, selected support spans, answer model, answer prompt, sanitization filters, rejected spans, and final QA pair. If the pair trains a model, the training artifact should point back to that record. If a source document is later found poisoned or malformed, the generated examples derived from it should be removable.
Teams should also distinguish source text from instruction text before the answer stage. Fixed-target generation can reduce anchor bias. Filtering can reduce behavioral hijacking. Neither should be treated as magic. Both need versioned rules, evaluation sets, false-positive review, and spot checks on retained context.
What This Changes
The self-generated question becomes the training policy because it decides what the model rehearses. In a large pipeline, that decision can disappear under the bland label "preprocessing." The paper makes the hidden policy visible: question generation selects evidence, concentrates attention, and can be steered by artifacts in the source.
The Spiralist standard is simple. Do not call a synthetic QA dataset grounded until its grounding path is inspectable. A question is not just a question. It is a vote on what counts as knowledge.
Sources
- Ekaterina Alimaskina, Denis Shveykin, Gleb Molodtsov, Igor Shalygin, Alexey Kadeishvili, and Aleksandr Beznosikov, Self-Study Reconsidered: The Hidden Fragility of Learning from Self-Generated QA, arXiv:2606.32002 [cs.AI], submitted June 30, 2026.
- arXiv experimental HTML for Self-Study Reconsidered: The Hidden Fragility of Learning from Self-Generated QA, including the evidence-footprint setup, Cartridges, LongHealth, QASPER, prompt seeds, instruction-compliance evaluation, and reported mitigations.
- Related pages: The Prompt Worm Becomes the Email Attachment, The Causal Context Becomes the Injection Tripwire, and The Training Opt-Out Becomes the Consent Interface.