• @Schmeckinger@feddit.de
        link
        fedilink
        168 months ago

        Which is incredibly favorable for the AI side. Like current countermeasures are either almost completely worthless, or degrade the quality of the protected medium so much that you wouldn’t use it.

          • Norgur
            link
            fedilink
            78 months ago

            Until the hype and thus the ridiculous worth estimations dry up and the AI companies suddenly can’t just throw money at every problem anymore.

            • FaceDeer
              link
              fedilink
              48 months ago

              Open source AI has been keeping up pretty well of late.

            • AphoticDev
              link
              fedilink
              28 months ago

              Most of the cool shit for AI these days is done by users, so at this point the companies aren’t super important anymore.

        • @Salamendacious@lemmy.worldOP
          link
          fedilink
          18 months ago

          Do you think an authentic AGI would have ethical\moral boundaries completely divorced from what the original software programmed? In other words would it be able to make it’s own decisions without interference?

            • @Salamendacious@lemmy.worldOP
              link
              fedilink
              18 months ago

              I hope they will because I feel like if AGIs have ethical decision-making skills that Terminator-esque dystopian future becomes remote. If they never have that then we very well might be at the mercy of the world’s largest conglomerations.

    • @Asifall@lemmy.world
      link
      fedilink
      208 months ago

      Not really, if you read the paper what they’re doing is creating an image that looks like a dog, is labeled as a dog, but is very close to the model’s version of a cat in feature space. This means manual review of the training set won’t help.

    • @SmoothOperator@lemmy.world
      link
      fedilink
      168 months ago

      Hmm, sounds more like they are adding structures to the images such that what is clearly a picture of a dog registers as a picture of a cat to an AI. I suppose this can be done by altering the pixels in a way invisible to humans, but visible to AI, adding a cat into the “ghost pixels”.

      • @Mirodir@discuss.tchncs.de
        link
        fedilink
        13
        edit-2
        8 months ago

        I went and skimmed the paper because I was curious too.

        If my skimming is correct, what they do is similar to adversarial attacks on classifiers, where a second model learns to change as few pixels as possible to confuse a classifier into giving a wrong prediction.

        Looking at the examples of dogs and cats: They find pictures of dogs where by making only minimal changes, invisible to the naked eye, they can get the autoencoder to spit out (almost) the same latent representation as an image of a cat would have. Done to enough dog-images, this will then confuse the underlying diffusion model to produce latent representations of cat images when prompted to generate a dog. Edit for clarity: Those generated latent representations would then decode into cat images.

        If my thinking doesn’t fail me, this attack could easily be thwarted by unfreezing the pretrained autoencoder. In the paper that introduced latent diffusion they write that such approaches already exist. If “Nightshade” takes off, I’m sure those approaches would be refined and used. Even just finetuning the autoencoder for a few epochs first should be enough to move the latent representations of the poisoned dog images and those of the cat images they’re meant to resemble far enough apart to make the attack meaningless.

        Edit: I also wonder how robust this attack is against just adding an imperceptible amount of noise to the poisoned images.