Cross-entropy comparison of LLM responses reveals Kimi's similarity to Claude A cross-entropy comparison of large language model responses reveals that Kimi's writing style is most similar to Claude's, according to a heat map built from character trigram distributions across model outputs. The analysis uses interpolated probabilities with a pooled background and filters for rare tell-tale words and phrases via BPE token counts. You're relatively right Which LLM models write alike? A heat map built from their words alone. --- format: typebulb/v1 name: "You're relatively right " --- code.tsx tsx import React, { useEffect, useMemo, useState } from "react"; import { createRoot } from "react-dom/client"; import { encode } from "gpt-tokenizer/encoding/cl100k base"; // ── Types ──────────────────────────────────────────────────────── type RawResult = { testId: string; testName: string; subject: string; score: number; response: string; response2?: string; reasoning: string; error?: string; }; type RawData = { timestamp?: string; judge?: string; results: RawResult }; type MetaRow = { match: string; lab: string; released: string | null }; type Counts = { map: Map