• pankuleczkapl@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      16
      ·
      5 months ago

      I think it can - procedural generation consist of procedures, that is elements designed by humans, which are just connected into a bigger structure. Every single template, rule and atomic object (e.g. a single room in a generated house) is hand-designed, and as such no matter what comes out the elements and connections were considered by a real human. On the other hand, generative AI is almost always some sort of machine learning, that is an approximation of what a good structure of something should be, but it is only a very poor, randomised approximation. You have absolutely no guarantees nor constraints on what might pop out of the model - that is my main concern with genAI, though the whole outputted thing looks reasonable, upon closer inspection it has a lot of inconsistenties.

    • luciole (they/them)@beehaw.org
      link
      fedilink
      English
      arrow-up
      12
      ·
      5 months ago

      Nonsense. Procedural generation is a rule-based deterministic system while generative AI is probabilistic and data driven. It’s fundamentally different.

      • eRac@lemmings.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        5 months ago

        Generative AI is too. Maintain your seed and you should get the same result every time.

        Most of the SaaS AI tools don’t expose control over their RNG, but some self-hosted ones do.

          • eRac@lemmings.world
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 months ago

            Neural networks are deterministic. In LLMs, it outputs probabilities, which are picked from via seeded RNG. Image generation tries multiple options based on different seeds, then picks the best fit as identified by a neural network and repeats. For both, if you give a specific model the same inputs, you’ll get the same output.

            The public-facing interfaces don’t give seed control, which means they give a different output each time, but that isn’t an inherent property of generative AI.