Ask HN: Could Anthropic's watermark be much simpler than we think? An anonymous Hacker News user proposed that Anthropic's watermarking of Claude output could be a simple hash-fingerprinting method, where generated text is split into overlapping chunks, hashed, and stored for detection, requiring no changes during token generation and thus no quality tradeoff. The user questions the false-positive rate at Anthropic's scale and asks if this explains their approach. Anthropic recently said they're working on watermarking Claude output, while also saying it won't interfere with generation quality. I'm wondering if is just hash-fingerprinting. For example, take the generated text and split it into overlapping chunks: "The company reported strong growth..." "reported strong growth in revenue..." "strong growth in revenue during Q2..." ... Hash each chunk and store the hashes. When text is submitted for detection, do the same thing and count how many chunk hashes are already in the database.Even if someone edits a few words, many overlapping chunks could still match. The search itself isn't really a problem. With 256-bit hashes you're dealing with a 2^256 space, but you only search the hashes you've actually stored. Binary search would search any hash in 256 iterations. This also satisfies the Anthropic requirements: nothing needs to be changed during token generation , so there's no quality tradeoff: https://x.com/i/status/2088343978873966687 The obvious question is how they handle false-positive rate works at their scale. Could this explain their approach, or is there something I'm missing? Comments URL: https://news.ycombinator.com/item?id=49308317 https://news.ycombinator.com/item?id=49308317 Points: 1 Comments: 0