• TheSlad@sh.itjust.works
    link
    fedilink
    arrow-up
    38
    arrow-down
    1
    ·
    edit-2
    8 months ago

    Gaussian blur 1 px, Sharpen 1 px

    Bye bye any pixel level encoding with minimal quality loss.

    • Kogasa@programming.dev
      link
      fedilink
      arrow-up
      18
      arrow-down
      6
      ·
      8 months ago

      Why do you think this would do anything to affect training? The patterns learned by ML models are way too fuzzy to be picky about exact pixel values.

      • ShustOne@lemmy.one
        link
        fedilink
        arrow-up
        11
        arrow-down
        2
        ·
        8 months ago

        I’m not sure what your experience is with the training data but that would absolutely effect the inputs.

        • Kogasa@programming.dev
          link
          fedilink
          arrow-up
          11
          arrow-down
          1
          ·
          8 months ago

          I’m a professional software developer with ML experience, albeit not an expert in ML specifically. It would obviously affect the literal value of the embeddings, but there’s no chance it would have a qualitative effect on a reasonably performant model.

          • ShustOne@lemmy.one
            link
            fedilink
            arrow-up
            3
            arrow-down
            1
            ·
            8 months ago

            It would though and their paper shows as much. The thing many forget is that it isn’t trained visually like us. Little input changes like this have a big impact.

            Now eventually if everyone uses the same glazing method the training won’t care but at the moment this is bespoke enough that it can’t be trained well on it. It will always be an arms race though.

            • Kogasa@programming.dev
              link
              fedilink
              arrow-up
              5
              arrow-down
              3
              ·
              8 months ago

              No, it wouldn’t, and the paper shows no such thing. Nightshade isn’t “Gaussian blur + sharpen.” It’s based on the use of a different diffusion model to perturb an image (with bounded difference in perceptual similarity) to minimize the distance of the embedding from that of an unrelated concept. It is mathematically optimized and highly specific to the prompt. The clever thing is that you don’t need access to the actual original text-to-image feature extractor because of the transferability between models, and the surprising thing is how few poisoned samples are required to break a model.

              • Zaktor@sopuli.xyz
                link
                fedilink
                English
                arrow-up
                2
                ·
                8 months ago

                Blur+Sharpen isn’t what Nightshade is doing, it’s an example of a passive defense technique that may mess up fine-tuned “invisible” attacks because they rely on making minimal changes to jump category, and that can often come in the form of pretty precise pixel changes. You may have seen past papers about making pandas classify as gibbons. They rely on introducing a noise mask that just makes the image look a little worse quality, but in total is enough to flip the category. They don’t really define their perturbation method in this paper, but there’s some tension between being “invisible” and being resilient to “invisible” corrections like suggested above.