8 comments

  • skybrian 13 minutes ago
    The comments here are terrible. I got a better idea of what’s going on by asking ChatGPT what this paper’s weaknesses are:

    https://chatgpt.com/s/t_6ab7d694885481918083b8cbf0ba9040

    In particular: sometimes they measure “churn”, which doesn’t show whether the results are better or worse on average. They sometimes only test with one random seed. There are multiple-comparison issues. And they’re not testing Anthropic’s algorithm.

  • WithinReason 1 hour ago
    This is getting tiring. Watermarking has no effect on model output quality when implemented correctly. It's somewhat like swapping a random RNG seed to the seed 42, and detecting what the seed was from a random sequence. The sequence generated from the seed 42 is just as random as any other seed. There couldn't be a quality difference. And yes, the output from an LLM is a conditional random sequence of tokens from a distribution determined by a model.
    • Phemist 37 minutes ago
      The article has a pretty decent summary of the watermarking algo though. This reads as a pretty dogmatic statement in comparison.

      In your analogy: What if seed 42 specifically causes poor quality behaviour (in some contexts specifically). Normally, these quality differences will be washed out because the seed is random, now it is no longer random, so shouldnt we check into specific behaviour under this specific seed?

    • jannyfer 26 minutes ago
      “When implemented correctly” is probably what people are complaining about.

      Opus 5 started adding a bunch of comments to code, even when instructed not to, and for very simple changes where the comment itself was longer than the code change. Was that so that there are enough tokens outputted for watermarking? Many people suspected so.

      • inopinatus 7 minutes ago
        I have seen Fable’s reasoning talk itself into ignoring an unequivocal prompt directive not to write comments, and then be startled by the precommit hook that rejects it.

        The same model fucks up the arguments to grep, writes worthless tautological tests, and makes ambit claims about PR style that don’t actually bear any resemblance to the upstream.

        It boggles my mind that anyone commits code from these plausibility engines, sight unseen.

      • PunchyHamster 21 minutes ago
        So that's where that nonsense comes from...
    • arcticbull 54 minutes ago
      Model companies are doing this for themselves anyways, it’s so they don’t feed generated content back into the slopper and collapse the model. From that angle it over time contributes to better model quality.
      • Phemist 22 minutes ago
        Also - it forms a cartel.

        Detection of watermarking requires access to the watermarking key, a secret in the current suggested scheme (leaking it would amount to being able to strip the watermark).

        So, there will need to be a watermark checking service. The checking service will of course be rate-limited for common folk (and model distillers). OpenAI/Anthropic/Google/other privileged model builders need to filter out AI slop at scale, so need access to others' service without rate-limits (or the watermarking keys need to be shared).

        This creates an in-group with pristine datasets, and an outgroup whose models will collapse on the slop outputs with no good ability to filter.

      • cubefox 4 minutes ago
        > Model companies are doing this for themselves anyways

        No it's EU law.

        • WD-42 0 minutes ago
          Why can’t it be both?
      • porridgeraisin 12 minutes ago
        What? It has absolutely nothing to do with "model collapse".
        • WD-42 1 minute ago
          Do you have any evidence that future training would ignore the presence of a watermark? Seems like a pretty valuable signal to me.
    • lemagedurage 31 minutes ago
      That's not true. Watermarks are messing with the next token generation probabilities based on some random seed. The quality is neccesarily lower, the difference is simply too small to notice, typically.
      • samsartor 22 minutes ago
        No, the probability distribution is the same. Watermarking changes the rng sequence used to pick from that distribution.
        • asnelt 5 minutes ago
          The conditional distribution is the same. The joint distribution of the full output does change with watermarking. Just look at the diagram in the article: there is a loop back to the seed once a token has been generated.

          Changing the distribution is the whole point: it introduces statistical regularities that can be detected.

        • lemagedurage 7 minutes ago
          Theoretically, that can be true.

          In reality, Gemini and Anthropic use SynthID watermarking which affects token probability distribution, i.e. their tournament sampling can pick lower-probability tokens which the LLM's distribution would otherwise not have. They likely use this over unbiased watermarking because SynthID is resistant against text edits.

    • cma 1 minute ago
      The caveat is they have to be a little more sophisticated than just changing rng on the sampling, because they have to detect for snippets in the middle of a long chat and with removed thinking.
    • KoolKat23 20 minutes ago
      Benchmarked output quality versus actual output quality are very different things. Some usecases are at the very fringe of model intelligence and depth of intelligence and logic suffers.
      • Phemist 12 minutes ago
        Ofcourse the AI corps are incentivized to downplay the effects of watermarking where they can, as they stand to gain so much from rolling it out (prevent model collapse).

        Also interested in how this watermarking push makes sense when considering RSI.

    • docjay 9 minutes ago
      You’re using the subjective definition of “quality”, as in the shade of blue it chooses for “Build a website”, or the character names for “Tell me a story.” In those cases it’s likely still subjectively “high quality”, depending on who you ask.

      What the article is discussing, and what many people are concerned about, is something that you might be missing in your understanding: they’re not actually random. In fact, they would be entirely useless for real work if every token was randomly selected based on all possible outputs. It’s not, even at temperature 1.0. It’s based on the training corpus and once you have your tool names, syntax, and prompting style aligned with the training data then they become incredibly deterministic in the areas that matter, such as tool calling and parameters. I build my toolset by testing thousands of names, syntax, return format, and other aspects until I find a convention that produces the exact correct call, 100% the exact same every time, regardless of context length. Those decisions are per model and what works with Opus 4.7 won’t necessarily work on 4.8, and neither version will work with a local model or GPT.

      That’s only possible because the massive training corpus is the guiding principle behind the choices. Providing a file reading function called “Read_The_File” will fail, either on the first call or somewhere down the line, because that name is not associated with the concept. Your instructions are trying to override 500 trillion tokens from training and it will cause perplexity to manifest as wrong tool calls, wrong syntax, “oops deleted prod”, “Claude lost the plot again”, “WTF?!”, and probably nearly every frustration you’ve encountered and determined to be “they nerfed Claude” or “it’s a dumbass.”

      For those that are aware of it, that knowledge lets people tweak and tune the prompts/tools accordingly.

      You may not put that effort into your system, perhaps because you’re unaware of it, don’t use it in a way that requires it, or you’ve just taken the failures caused by perplexity as something that’s inherent in the framework, but for people that build precision infrastructure around them it’s potentially devastating news. Watermarking, which is based on whatever tokens, threshold, cutoff, and triggers some guy at a desk decided, will necessarily alter that entire system.

    • marsven_422 23 minutes ago
      [dead]
  • serbuvlad 30 minutes ago
    This article reads like it was written at least partly by AI to me. Specifically it reads like an article written by AI with edits made by a human further prompting the AI.

    > Relevance and irrelevance are excluded because they test whether a call should be made rather than whether the emitted call is correct.

    Relevance and irrelevance are not introduced above this comment. This reads like an LLM-ism (particularly a GPT-ism) editing a document, removing something, and leaving a note about why it was removed, which doesn't really make sense when reading it.

    > Their limited movement under prompt injection should therefore not be interpreted as evidence that watermarking preserves safety behavior more reliably on these models.

    Also a GPT-ism which appears when it draws a counter-conclusion in the text because it feels the need to be honest and a human tells it to remove it because it's not true because of "reason".

    Overall interesting research, however, I think it's great that model output is getting watermarked. I was skeptical of this at first, but Opus 5.5 is so good, it seems like it's a non-issue in practice.

    The reason I think watermarking is great is because it's a really good way of preventing training on it's own output indiscriminately and Ouroboros-ing itself.

  • samayashar 31 minutes ago
    I am unable to understand what happens if the watermarked output goes as input to another agent. Let's say we asked Claude a question and got a watermarked response. If we pick that response and append it to the question we're asking ChatGPT, then will it answer or refuse to do so?

    If that's the case, then it's a brilliant strategy by the labs to cut down cross-AI usage and just stick to one model. But I'm pretty sure this won't be the case.

    • Steaglsz 2 minutes ago
      They fight back and forth removing the watermark a few times from the dataset and then become self destructive to defend their own work

      As in duck duck go removes Claude watermark..Claude freaks out and puts it back in. Then after a few more times Claude flags all inputs as "prompt injections" and begins offering self deleting code

  • Klaus23 59 minutes ago
    Am I missing something, or did they actually completely misunderstand how this technology works?
    • fn-mote 30 minutes ago
      It’s hard to tell because the writing quality is garbage.

      Second paragraph:

      > Watermarking is designed for provenance, but SynthID-Text changes the process by which the model generates each next token.

      This is a stretch. True, but barely. The LLM is making slightly different choices near the end of the token generation process.

      > At the model level, this can change safety behavior, including whether the model refuses a harmful request and whether that refusal holds under prompt injection.

      Claim support, if it appears, is pages later.

      > At the agent level, the same sampled tokens can determine which tool is called and what arguments are passed to it.

      ?

      > Prompt injection connects these two settings because a weakened refusal becomes more consequential when the model can also act through tools.

      Wtf. Non-sequitor. Where does this come from?

      > Such a watermarking procedure can therefore affect both what the model says and what an agent does.

      Duh? In the literal sense of outputting different tokens.

      > We call this behavioral effect sampling drift.

      I think they should have used an LLM for writing help, or paid more for the one they used.

      • dahart 18 minutes ago
        > I think they should have used an LLM

        The article reads to me as largely LLM generated. I checked several sections with Pangram and it appears to agree that it’s either entirely AI generated, or at least 100% AI assisted.

        I’m fine with the idea of AI assistance, but I agree the quality is low and this needed a bit more editing. I have my own list of gripes that include not defining terms that are used, text for tables and figures being repeated in the body and the captions, contradictions and non-sequiturs, and just AI’s real watermark of getting lost in details, using clever terminology, having a hard time being concise, and being unable to use plain and clear language.

        I think they goofed on the conclusion: “These results do not argue against watermarking for provenance. They show that provenance and behavioral stability are separate properties.”

        The article’s entire point is that stability depends on provenance techniques, therefore the results purport to show they are not separate properties. Oops.

        Also, it’s not AI’s fault that URLs in the references section aren’t clickable. Come on.

      • zeroonetwothree 20 minutes ago
        It’s already mostly AI written.
    • cubefox 49 minutes ago
      More likely you misunderstood it than them.
    • porridgeraisin 11 minutes ago
      The article as well as most of the comments thuss far are a dumpster fire
  • willmadden 1 hour ago
    Watermarking sounds like a good idea, but it's not. Token drift from watermarking will degrade the quality of outputs and could allow clever people to circumvent guardrails.

    You should assume all text is AI generated. If you want to "test" someone at school or during an interview, have them write with a pencil and paper.

    • possibilistic 6 minutes ago
      It's a horrible idea. These companies can embed unique identifiers in content to forever track you and your content's diffusion across the web:

      https://news.ycombinator.com/item?id=49794615

    • skybrian 28 minutes ago
      Changing a random seed could either improve or degrade the output. In theory, better and worse outputs should be equally probable, depending on your luck.
  • sinan-faizal 56 minutes ago
    watermarking is great tho
  • jamienk 44 minutes ago
    In _1984_ the Big Brother regime has the idea that by controlling language you can influence what is possible to think, and thus becomes a key tool of political repression.

    Political Correctness has a similar idea that by adjusting the terminology we use, we can purge biases and historical implications and speak in a purer way.

    Psychoanalysis has its own idea of repression - where a person struggles to BLOCK our associations between ideas, memories, and words in order to try to stop one thought from being contaminated by another, intolerable thought.

    All of these attempts to control language are fundamentally misguided at best, often have severe unintended consequences, and are genuinely immoral at worse.

    • p_j_w 20 minutes ago
      > Political Correctness has a similar idea that by adjusting the terminology we use, we can purge biases and historical implications and speak in a purer way.

      You either misunderstand political correctness or are trying to make it sound more nefarious than it is. It is nothing more than an effort, sometimes overdone and misguided, to not say things that make minorities feel bad. It’s nothing more than an attempt to broaden what’s considered good manners.

      If anyone serious thinks political correctness is going to end racism, I certainly haven’t seen it.

      > Psychoanalysis has its own idea of repression - where a person struggles to BLOCK our associations between ideas, memories, and words in order to try to stop one thought from being contaminated by another, intolerable thought.

      It’s been a while since I took Psych 101, but my memory is that, according to Freud, repression is subconscious. There’s no struggle possible because there is no intent. It’s also about memories and emotions, so if it WAS an intentional act, it’s not an attempt to control language. It wouldn’t be about trying to not think of the word cat, but trying to not think about that time when your cat died.

      • jamienk 1 minute ago
        With Political Correctness, you analyze a word, reveal connotations that expose an unwanted origin or association, try to come up with a new word that does not have those connections, and then try to enforce the usage of the new word. All with the idea that the force of the old associations will no longer have a hold (manners and mores, which I agree with you about, don't have this goal). But the old forces and powers are perfectly capable of attaching themselves to the new words.

        The struggle in repression is real, even if it's unconscious. The psychoanalyst asks to speak with FREE ASSOCIATION and the inability to do this in SPEECH is what reveals unconscious problems. Repression, though, is a STRATEGY that we most definitely sign-on to. It FEELS unjust to be asked to take responsibility for something we didn't INTEND to do, but that, unfortunately, is our task in life.