this post was submitted on 24 Oct 2025
368 points (99.5% liked)
Memes
12837 readers
1910 users here now
Post memes here.
A meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular phenomenon or theme.
An Internet meme or meme, is a cultural item that is spread via the Internet, often through social media platforms. The name is by the concept of memes proposed by Richard Dawkins in 1972. Internet memes can take various forms, such as images, videos, GIFs, and various other viral sensations.
- Wait at least 2 months before reposting
- No explicitly political content (about political figures, political events, elections and so on), !politicalmemes@lemmy.ca can be better place for that
- Use NSFW marking accordingly
Laittakaa meemejä tänne.
- Odota ainakin 2 kuukautta ennen meemin postaamista uudelleen
- Ei selkeän poliittista sisältöä (poliitikoista, poliittisista tapahtumista, vaaleista jne) parempi paikka esim. !politicalmemes@lemmy.ca
- Merkitse K18-sisältö tarpeen mukaan
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
One of the things I've really had AI fanboys going crazy over is by asking them to feed their AI generated code back into the AI and ask for potential issues or mistakes. Without fail it points out very obvious issues and sometimes some less obvious ones as well. If your AI coder is so good, why does it know it fucked up?
This is basically what these new "agent" modes do. Just keep feeding the same thing in on itself till it finds some balance. Often using an external tool, like building the project for example, to determine if it's done. However I've seen this end up in loops a lot. If all of the training data contained the same mistake (or the resulting network always produces that mistake), it can't fix it. It will just say oh I've made a mistake let me fix that over and over again as the same obvious error pops out.
I've tried a few of the newer local ones with the visible chain of thought and thinking mode. For some things it may work, but for others it's a hilarious train wreck of second guessing, loops, and crashes into garbage output. They call it thinking mode, but what it's doing is trying to stack the odds to get a better probability hit on hopefully a "right" answer. LLMs are the modern ELIZA, convincing on the surface but dig too deep and you see it break. At least Infocom's game parser would break gracefully.