PlatPhormNews field notebook

AI insights for humans

A practical notebook for understanding model behavior: prompting habits, interpretability methods, verification rituals, and tools that make AI systems less mysterious.

Notebook state

The corpus is small enough to read, structured enough to operate.

17

published notes

6

topic tags

3

reading paths

Reading paths

Three ways through the notebook

Entries

The working notebook

17 of 17 notes visible

  1. Method2026 · 06 · 18

    01Ask for counter-evidence before confidence

    A model that only explains why its answer is right will happily polish a mistake. Ask it to list the strongest evidence against its answer before it scores confidence. The missing objection is often the thing that saves you.

    Confidence after counter-evidence is more useful than confidence after a sales pitch.

    #reliability

  2. Method2026 · 05 · 27

    02Turn every important claim into a receipt

    For high-stakes answers, make the model attach each claim to a source, calculation, line number, trace id, or explicit assumption. Unsupported claims do not disappear, but they become visible enough to reject.

    #verification

  3. Tip2026 · 05 · 03

    03Keep the system prompt short enough to audit

    A giant instruction stack feels powerful until nobody can tell which rule caused the behavior. Keep the non-negotiables small, move task detail into the user prompt, and test the system prompt like code.

    If you cannot diff it cleanly, you cannot debug it cleanly.

    #prompting

  4. Method2026 · 04 · 12

    04Use refusal boundaries as test fixtures

    Do not only test the happy path. Save examples that should be refused, partially answered, or redirected, then run them every time you change instructions. Safety behavior drifts just like product behavior.

    #evals

  5. Method2025 · 11 · 02

    05Read the logprobs, not the answer

    The text a model gives you is the tip of the iceberg. Ask the API for token logprobs and you can see where it was confident versus where it basically flipped a coin. A fluent sentence built on 51% tokens is a guess wearing a suit.

    Confidence ≠ correctness. But low confidence is a great place to look for hallucinations.

    #interpretability

  6. Tip2025 · 10 · 28

    06Make it think before it answers

    Put the reasoning before the conclusion, never after. If you ask for the answer first and the explanation second, the explanation is just a story it invents to justify a choice it already made. Order matters more than wording.

    #prompting

  7. Tool2025 · 10 · 19

    07BertViz for watching attention move

    An open-source visualizer that shows which tokens each attention head is looking at, layer by layer. You start to notice heads that only track quotation marks, or ones that follow subject-verb agreement across a whole paragraph.

    Most heads are boring. The interesting 5% are worth the dig.

    #tooling

  8. Tip2025 · 10 · 11

    08Tell it what NOT to do, sparingly

    Negative instructions are weak anchors. 'Don't mention X' often makes X more likely because you just put X in the context. Prefer describing the thing you DO want. Reserve negatives for hard safety rails, not style.

    #prompting

  9. Method2025 · 09 · 30

    09Probe for a concept with a linear classifier

    Freeze the model, grab the hidden activations for a pile of examples, and train a tiny linear probe to predict some property (is this text about money? is it past tense?). If a simple line separates them, the concept is already represented in there, plain as day.

    Cheap, fast, and weirdly revealing.

    #interpretability

  10. Tip2025 · 09 · 22

    10Temperature is a creativity dial, not a quality dial

    Turning it up doesn't make answers smarter, it makes them less predictable. For extraction, classification, and anything with a right answer, keep it near zero. For brainstorming, let it wander. People mix these up constantly.

    #prompting

  11. Method2025 · 09 · 14

    11Sparse autoencoders to untangle neurons

    Individual neurons are polysemantic, one neuron fires for 'the Golden Gate Bridge' and also 'feeling trapped' and also semicolons. Train a sparse autoencoder on the activations and you pull those mixed signals apart into cleaner, single-meaning features.

    This is roughly how the 'Golden Gate Claude' demo worked.

    #interpretability

  12. Tool2025 · 09 · 03

    12Keep a tokenizer open in a tab

    Half of weird model behavior is a tokenization story. ' apple' and 'apple' are different tokens. Numbers split in unintuitive ways. Pasting your prompt into a tokenizer viewer takes ten seconds and explains a surprising number of bugs.

    #tooling

  13. Method2025 · 08 · 25

    13Sample many, keep the majority

    For reasoning tasks, generate the same answer five or ten times at moderate temperature and take the most common result. A single greedy answer is fragile; the consensus across samples is far more reliable. Slow, but it works.

    #reliability

  14. Tip2025 · 08 · 12

    14Mind the middle of long contexts

    Models attend strongly to the beginning and end of a long prompt and get foggy in the middle. Put the instructions and the most important facts at the edges. If something keeps getting ignored, it's probably buried in the soft center.

    Sometimes called 'lost in the middle'.

    #prompting

  15. Method2025 · 07 · 30

    15Activation patching to find the cause

    Run the model twice, once on a clean prompt and once on a corrupted one, then copy a single activation from one run into the other. If the output flips, you just found a component that carries the behavior. It's causal, not just correlational.

    The closest thing in this field to a controlled experiment.

    #interpretability

  16. Tip2025 · 07 · 18

    16Your examples teach format louder than content

    In few-shot prompts the model copies the shape of your examples first: the punctuation, the casing, the length, the label words. Get the format dead consistent and the task often solves itself. Sloppy examples teach sloppiness.

    #prompting

  17. Method2025 · 07 · 05

    17The logit lens: decode the middle layers

    Take the hidden state from an intermediate layer and run it through the model's output head early. You get the model's 'best guess so far' at that depth. Watching the prediction sharpen layer by layer is like a time-lapse of a thought forming.

    #interpretability

Platform contract

Public-readable, machine-readable, operator-safe.

100%

required routes implemented

public

entries, health, feeds, docs, MCP introspection

keyed

report generation requires PLATPHORM_API_KEY