Skip to content
C.W.K.
Stream
Lesson 02 of 05 · published

The Reviewer Is Blind

~12 min · blind-review, naturalness, target-language, bias

Level 0Dry Nib
0 XP0/36 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete
"Blindness narrows the review question so the answer can be trusted."

Separate the powers

A reviewer who sees the original can reward literal alignment even when the target text limps. Inkwell asks a sharper question: does this translation stand as natural writing in its own language?

Let state name the role

Build the review packet from translation text, target language, and a rubric about naturalness. Exclude original text, source keywords, and author reasoning. The exclusion is part of the API contract, not a polite prompt sentence.

The convenient overreach

Redacting the original in the UI while leaving it in model context is fake blindness. So is asking the reviewer to verify factual fidelity it cannot see. The role must match the evidence supplied.

Authorship invariant. Blindness narrows the review question so the answer can be trusted.

Follow one sentence through four acts

Test “The Reviewer Is Blind” by tracing original authorship, translation authorship, blind review, and author revision. For each act list inputs, outputs, visible evidence, writable fields, and the proof handed forward. One brain may perform two roles at different times; the job and authority must still remain distinct.

Make the judgment

Write the exact fields in a blind review packet and the questions the reviewer is not qualified to answer. If you cannot answer who chose the final wording in one sentence, provenance is too thin. A note that silently edits text or a stet whose reason disappears changes who holds the pen.

Narrow roles sharpen quality

Giving a reviewer every truth is not always an improvement. Restricting evidence and action makes the naturalness question answerable. The author uses that answer as material while retaining responsibility for the final choice.

Code

Construct a genuinely blind packet·python
def blind_review_packet(translation):
    allowed = {
        "translation_text": translation["text"],
        "target_language": translation["target_language"],
        "rubric": "Review naturalness, cadence, and idiom. Return notes only.",
    }
    forbidden = {"original_text", "source_keywords", "author_reasoning"}
    assert forbidden.isdisjoint(allowed)
    return allowed

print(blind_review_packet({"text": "A target-language draft.", "target_language": "en"}))

External links

Exercise

Write the exact fields in a blind review packet and the questions the reviewer is not qualified to answer.
Hint
Put visible evidence and writable fields in the same table.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.