AnyLearn
All lessons
AIbeginner

Moderation and AI detection, and why both fail

How platforms decide what stays up, and why nobody can reliably tell you whether something was made by AI. Covers classification at scale and the precision-recall tradeoff, why AI detectors accuse innocent people at rates that make them unusable, and how provenance approaches like C2PA and SynthID try a different answer, plus where they break too.

Updated · AI-authored, review-gated · how lessons are made

Not signed in: your progress and quiz score won't be saved.
Progress1 / 9

The arithmetic forces automation

Moderation starts from a constraint, not a preference. The volume uploaded to a large platform is far beyond what any number of humans could individually review. There is no budget, and no labour pool, that makes human-first moderation possible.

So the pipeline is always the same shape:

  1. Classifiers score everything. Every item, automatically, in milliseconds.
  2. The confident majority is auto-resolved. Clearly fine: published. Clearly violating: removed.
  3. The uncertain middle escalates to humans. A tiny fraction of the total, which is the only reason human review is affordable at all.

Humans are not the first line. They are the appeals court for the ambiguous band, and the classifier decides who gets there.

This matters for a reason people miss: when a decision feels obviously wrong to you, it usually was not a bad judgement by a person. It was a threshold, applied automatically, to an item that never reached a human at all.

Full lesson text

All 9 steps on one page, for reading, reference, and search.

Show

1. The arithmetic forces automation

Moderation starts from a constraint, not a preference. The volume uploaded to a large platform is far beyond what any number of humans could individually review. There is no budget, and no labour pool, that makes human-first moderation possible.

So the pipeline is always the same shape:

  1. Classifiers score everything. Every item, automatically, in milliseconds.
  2. The confident majority is auto-resolved. Clearly fine: published. Clearly violating: removed.
  3. The uncertain middle escalates to humans. A tiny fraction of the total, which is the only reason human review is affordable at all.

Humans are not the first line. They are the appeals court for the ambiguous band, and the classifier decides who gets there.

This matters for a reason people miss: when a decision feels obviously wrong to you, it usually was not a bad judgement by a person. It was a threshold, applied automatically, to an item that never reached a human at all.

2. Precision and recall, and the dial between them

Two ways to be wrong, and they pull against each other.

  • False positive: innocent content removed. Measured by precision, how much of what you removed deserved it.
  • False negative: harmful content left up. Measured by recall, how much of the harm you actually caught.

You cannot maximise both with an imperfect classifier. There is one dial, the threshold, and it slides between them:

threshold LOW      -> catches more harm, removes more innocent posts
                      high recall, low precision

threshold HIGH     -> removes fewer innocent posts, misses more harm
                      high precision, low recall

The crucial consequence: where the dial sits is a value judgement, not a technical fact. No amount of model improvement chooses it for you. A platform setting it for self-harm content and for copyright will pick different points, because the cost of each error differs. Someone decides how many innocent creators is worth how much prevented harm, and that decision is unavoidable.

3. Why context breaks classifiers

Classifiers judge an item. Policies are about meaning, and meaning does not live inside the item.

The same footage of violence is a war crime being documented, a news report, or glorification, depending entirely on who posted it and why. The same slur is an attack or a quotation in an anti-racism talk. The same medical image is educational or not depending on the surrounding context.

A model looking at pixels and audio cannot see intent, authorship, or the surrounding conversation. It sees the artifact. So it systematically mishandles exactly the cases where context does the work, which are also the cases people care most about.

This is why documentation of atrocities gets removed by systems trained to remove graphic violence: the classifier is correct that the content is graphic violence, and the classifier's correctness is not the question.

No threshold fixes this, because it is not a calibration error. The information required to make the decision was never in the input.

4. AI detectors do not work well enough

As generation got cheap, a new demand appeared: tell me whether a human made this. The tools sold for that job are statistical classifiers, and the published evidence on them is unusually damning.

The most direct source is OpenAI, reporting on its own product. Its AI Text Classifier identified just 26 percent of AI-written text, while flagging 9 percent of human writing as AI. OpenAI withdrew the tool in July 2023, citing its "low rate of accuracy". It was also unreliable below about 1,000 characters, which is most social posts.

Independent testing agrees. Weber-Wulff and colleagues tested 14 tools, including Turnitin, in the International Journal for Educational Integrity (2023), and concluded that "the available detection tools are neither accurate nor reliable". They found the tools lean toward labelling AI text as human, and that obfuscation techniques degrade them further.

Sit with that 9 percent. Applied to a class of 30, it is roughly three innocent people accused per assignment. Applied to a platform's uploads, it is millions.

The problem is not that the tools do nothing. It is that they are nowhere near accurate enough to justify a consequence.

5. And the errors are not spread evenly

An accuracy problem becomes a fairness problem once you see who absorbs the errors.

A Stanford study published in Patterns (Liang et al., 2023) ran 91 TOEFL essays written by non-native English speakers through seven commercial detectors. 61.3 percent were flagged as machine-written. Essays by native speakers were flagged around 5.1 percent of the time, and the same tools were near-perfect on US eighth-grade essays.

So the detectors were not uniformly bad. They were roughly fine for one group and badly wrong for another, which is worse, because it looks reliable right up until it destroys somebody.

The cause is mechanical, not political. Detectors lean on perplexity: roughly, how surprising each next word is. Writing that uses a narrower vocabulary and more predictable constructions scores low perplexity, and low perplexity is precisely the signature these tools read as machine-written. Non-native writing tends to be more regular, so it trips the wire.

The honest description: a detector does not separate machine text from human text. It separates statistically unsurprising text from surprising text. A person then reads that as guilt.

6. Provenance: prove origin instead of guessing it

Detection asks an unanswerable question: does this artifact look synthetic? Provenance asks a tractable one: what does this file say about where it came from, and is that claim signed?

Two mechanisms, working differently.

C2PA Content Credentials attach cryptographically signed metadata recording how a file was made and edited. Backed by a coalition including Adobe, Microsoft, the BBC and camera makers such as Leica and Sony. A camera can sign an image at capture; each edit appends to the manifest.

Watermarking, such as Google's SynthID, embeds a statistical signal into the pixels or tokens themselves rather than into metadata. Because it lives in the content, it survives screenshots and re-encoding that destroy metadata.

The philosophical shift is the point. Detection guesses from the artifact and is wrong constantly. Provenance carries a claim from the source and can be verified. It only works if the claim was attached at creation, which is the whole difficulty.

7. Provenance breaks too, in its own ways

Both approaches have holes, and they are structural rather than bugs to be patched.

Metadata is fragile. C2PA credentials live in metadata, and metadata is destroyed by screenshots, format conversion, and the re-encoding platforms routinely apply on upload. A genuine camera-signed photo can therefore arrive with its manifest stripped, so it verifies as unknown, which a careless reader treats as suspicious.

Coverage is the killer, and it is structural. A watermark exists only if the model that generated the content chose to embed one. Google has deployed SynthID across its own models, but there is no cross-vendor standard that every generator implements, and anyone running an open-weights model on their own hardware can simply decline to participate. Watermarking is therefore opt-in by the party with the least incentive to opt in.

The consequence follows without needing a statistic: a large share of generated content carries no provenance signal at all, and no detector can conjure one that was never embedded.

Absence proves nothing. No credential means unknown, not human-made. That is exactly the ambiguity a bad actor wants, and it costs them nothing: a screenshot produces it for free.

8. What follows from all this

Put the pieces together and some firm conclusions fall out.

ClaimVerdict
"A detector says this is AI, so it is"unsound. OpenAI's own tool flagged 9 percent of human text and was withdrawn; independent testing calls these tools neither accurate nor reliable
"No Content Credential, so it is fake"unsound. Absence means unknown; screenshots strip metadata
"Better models will fix moderation"no. The threshold is a value judgement, and context is not in the input
"This has a valid signed credential"meaningful. A verifiable claim from a source
"Platforms should just review everything"arithmetically impossible

The honest position: origin is becoming unprovable by inspection, and the replacement is not a better detector but a chain of signed claims, which is only as good as its adoption.

For you as a poster, the practical takeaway is narrow and useful: disclose synthetic media yourself, keep provenance intact when a platform allows it, and never accept a detector's verdict, about you or about anyone else, as evidence of anything.

9. Two ways to answer 'is this real'

Detection inspects the artifact and guesses, producing false positives on genuine work. Provenance verifies a signed claim attached at creation, which is sound when present but frequently absent or stripped.

flowchart TD
  A["is this content real or generated?"] --> B["detection: inspect the artifact"]
  A --> C["provenance: check for a signed claim"]
  B --> D["statistical classifier scores it"]
  D --> E["innocent work flagged: 9 percent for OpenAI's own withdrawn tool"]
  E --> F["too unreliable to justify a consequence"]
  C --> G["C2PA manifest: signed, but metadata is strippable"]
  C --> H["watermark: in the pixels, survives screenshots"]
  G --> I["present and valid: meaningful evidence"]
  H --> I
  G --> J["absent: proves nothing, only unknown"]

Check your understanding

The lesson ends with a 5-question quiz. Take it in the player above to see your score.

  1. Why are classifiers, not humans, the first line of moderation?
    • Classifiers are more accurate than human reviewers
    • The upload volume is far beyond what any number of humans could individually review
    • Human review is banned in most jurisdictions
    • Humans cannot judge context reliably
  2. A platform lowers its moderation threshold to catch more harmful content. What necessarily happens?
    • Both false positives and false negatives decrease
    • Only accuracy improves, with no side effects
    • Recall falls while precision rises
    • Recall rises and precision falls, so more innocent posts get removed
  3. Footage documenting a war crime is removed by a system trained to remove graphic violence. What does this illustrate?
    • The classifier is miscalibrated and needs retraining
    • The threshold was set too high
    • Context determines meaning, and intent and authorship are not in the input the classifier sees
    • The model confused the footage with generated content
  4. A Stanford study (Liang et al., Patterns, 2023) ran non-native TOEFL essays through seven commercial AI detectors. What did it find?
    • 61.3% were flagged as machine-written, against about 5.1% of native-speaker samples
    • The detectors performed identically across both groups
    • Every essay was correctly identified as human-written
    • Only essays over 5,000 words were misclassified
  5. An image arrives with no C2PA Content Credential. What can you conclude?
    • It is AI-generated
    • It was made by a human, since AI tools always sign their output
    • It has been deliberately tampered with
    • Nothing; absence means unknown, and ordinary screenshots or re-encoding strip metadata

Related lessons

AI
advanced

Building Something That Holds Up

Given that the tradable-signal path is narrow and hard to evidence, the systems worth building are the ones the first lesson identified: extraction at scale. This lesson covers the engineering that makes them survive audit, the evaluation that does not depend on returns, and the governance obligations that apply once a model touches a regulated process.

8 steps·~12 min
AI
advanced

Where LLMs Actually Fit in a Trading Firm

The popular framing is a model that predicts prices. That is the one job the technology is worst suited to, and it obscures the one it is genuinely good at: turning unstructured text into structured data at a scale that was previously unaffordable. This lesson locates LLMs against the trading stack and rules out the places they cannot go.

8 steps·~12 min
AI
intermediate

Explainable AI: The Landscape of Model Explanations

A model that predicts well can still be impossible to justify. This lesson maps explainable AI: interpretable-by-design versus post-hoc, global versus local, model-specific versus model-agnostic. It covers the global workhorses (permutation importance, partial dependence, ICE), faithfulness versus plausibility, and the argument that post-hoc explanation is the wrong tool for high-stakes decisions.

11 steps·~17 min
AI
advanced

Training Energy-Based Models

Training an EBM means shaping an energy landscape so real data sits in valleys, but the intractable partition function blocks plain maximum likelihood. This lesson covers the push-down-push-up principle, contrastive methods (contrastive divergence, noise-contrastive estimation), score matching, and the regularized alternative that avoids sampling entirely.

8 steps·~12 min