this post was submitted on 15 Jul 2026
724 points (97.5% liked)

Technology

86387 readers
3504 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] lechekaflan@lemmy.world 9 points 6 hours ago* (last edited 6 hours ago)

It is no more different with the gold rushes to California, Oregon, and Alaska, where the real winners are the merchants selling pickaxes and work overalls.

[–] HugeNerd@lemmy.ca 2 points 4 hours ago

Well if you have a better way to generate Jurassic Park "but everyone's fat" videos I'd love to hear it.

[–] HrabiaVulpes@europe.pub 32 points 11 hours ago (2 children)

Whoever thought that this machine that can predict next word in a sentence, next sentence in a conversation etc. should be used in place of all human intellectual work... should have his elderly care taken over by LLM.

[–] Garbagio@lemmy.zip 5 points 5 hours ago (1 children)

What you have to understand is that the CEOs and upper management of these companies genuinely believe that human intelligence is just a predictive model. They are so divorced from humanity, from actual people, that they only trust each other, and even then, barely. Some psychologist posited that consciousness is in part predictive, then Curtis Yarvin latched onto that half-baked headline and wrote on it, and then these sick fucks all had the same ideas: That they each are always the smartest man in the room, that their genuinely shallow creativity is deeper than anyone else's, and that if the next guy who they consider almost as smart as themselves says it's because humans are just complex llm's then it must be true; that if they are barely smarter than this shittu technology, then all of humanity must be at or below it.

[–] HrabiaVulpes@europe.pub 2 points 1 hour ago* (last edited 1 hour ago)

I don't need to know any CEO to find a person who thinks they are smarter or better than everyone else. Why americans gave so much power to those idiots is beyond me though.

Also - post title is disingenuous. Current wave of AI is an engineering marvel, marketed dishonestly and used haphazardly.

[–] jj4211@lemmy.world 11 points 11 hours ago (3 children)

That's what is wild about it. At any given point in time, the model is wholly consumed only with the very next token. Maybe that token is a running narrative of 'reasoning' or directly in the output, either way, the AI does not have anything to model anything beyond the very next token. It doesn't have a destination in mind and is just finding the words to get there, it's building it up word by word. The overall 'meaning' is an emergent property of just picking the very next token and seeing what happens.

Honestly, it's shocking it works as well as it does. More shockingly, there are AI enthusiasts that argue that's how the human brain works, which I can't imagine someone going through life with every thought rooted in building it up word by word.

[–] HrabiaVulpes@europe.pub 1 points 1 hour ago

My masters degree in intelligent systems wept in the corner after seeing your explanation.

But I guess cars are just four wheels and a fancy basket people sit in.

[–] kreskin@lemmy.world 2 points 7 hours ago (1 children)

Well yes and no. it is steered by a buffer of context as well that sorts/ranks/informs what the next word should be. That context differentiates if you are talking about apple the fruit or apple the company or apple the device. Heres a great overview if anyone is interested. And no, its not my video. Its a youtube intro to how AI works. Best watched with duckduckgo browser which trims out youtubes overly frequent ad interruptions. https://www.youtube.com/watch?v=OYvlznJ4IZQ

[–] jj4211@lemmy.world 2 points 6 hours ago

But that context is a mix of model output and other sources. The model output portion was generated token by token, and is combined in interesting ways with things like human response, search results, software output. It's still a backward looking mechanism, rather than having established a concept as a goal and then trying to build the words to reach that concept like we do.

Size and strategy for managing the context has been critical for improved subjective results, but it still doesn't exhibit the behavior of the words as a tool to address some concept, everything about the model is about the words themselves. So we end up with something very good at generating what seems right and there's a super high chance of what seems to be right actually being right. Especially when the software can automatically execute commands and the good or bad results reach into the context window, enabling it to effectively get automatically second guessed. The potential for automatic verification in some scenarios automatically feeding the context window is what makes it particularly appealing for software folks, though not universal.

[–] krypt@lemmy.world 4 points 8 hours ago (2 children)

its not that simple. whatever opinion you might on llms have you have to agree this is oversimplifying at best.

[–] jj4211@lemmy.world 5 points 8 hours ago (1 children)

I assumed that but everything I have seen as I dug deeper has been that at some level that is what is happening. If it is 'reasoning', it's generating a 'reasoning chain' next token by next token and using that to influence the final output tokens. The reasoning chain is discarded and since the actual output is a continuation of the reasoning chain it may conceptually be described as allowing the model to 'rethink' things, but even as the generation of a 'reasoning chain' has results that more closely resemble reasoning, it is still a scenario where it's building it one token at a time and we get to see meaning as an emergent property, rather than trying to find words to build to a more abstract concept like humans do. It just gets to throw away the intermediate work and the extra tokens manage to improve the 'accuracy' of the preserved final output.

[–] rumba@lemmy.zip 4 points 7 hours ago (1 children)

The interesting bits are when it derives the likely hood of something being correct and does more passes, or splits the data apart in the first pass and opens up new context processes with specialized instructions to handle it. The code stuff goes full on ororborus on some models, writes out the code on one pass, checks for issues on another pass, runs the code looking for errors on a third pass and goes back to step 1 if it fails.

They're getting a lot out of it for it primarily just being a weighted token generator wrapped in an orchestrator.

[–] jj4211@lemmy.world 3 points 6 hours ago (1 children)

Particularly software development with very good and very quick tests allow rerolling and that is very appealing in those scenarios. Problems being that very good tests are rarer than people like to think and sometimes it just gets stuck in a loop. At work the other week someone set it at the task of fixing a bunch of build warnings that had accumulated over the years. It succeeded after burning through tokens to take 30 tries at it. It's solution after all that hard thinking? It put // @ts-nocheck at the top of every file and called it a day.

But superficially, someone handed it a chore and didn't have to think about it, and if no one looked deeper, then it was able to get to the desired behavior simply by rerunning the given task over and over without human intervention until it worked. Which is also broadly relatable as there's a lot of humans in the industry acting broadly the same, but I've always been frustrated by those folks anyway.

[–] rumba@lemmy.zip 1 points 7 minutes ago

Wide scoping like that rarely ends well. Give it the list, tell it to spin a new agent for every single issue and operate on them separately. If any of those agents run out of context memory, it will just shit the bed. Clarify that you need the test to actually work and not be commented out, and that the tests themselves still need to be viable and indicate a healthy working app, not just report that it's healthy. Trying to get tests happy in AI is like making wishes on a monkey's paw. Then assign someone to look after it because that bastard will chew through 10's of thousands of dollars to fix a laundry list of tests, which in my dev experience will be all broken and ignored in 2-3 minor releases.

You can generally get it to do things, even somewhat complicated things, but it's not easy, and the shit it gives you back while you're trying to convince it to do the job is the same stuff you'd fire an employee over.

My favorite thing is to make it make ansible tools, They're easy to read, easy to lock down, keys and passwords go in a vault that it's forbidden to read. Then I have it write runbooks on how to operate the playbooks. I then make an index of runbooks, and ask it to do them. It's an ansible job, so I can read it easily and make sure it's not able to delete my drive or my production database.

If I lose access to cheap tokens, everything I've making is still usable, and for now, I can spend my time working on stuff that's not simple enough that it can handle it well.

[–] khepri@lemmy.world 3 points 7 hours ago* (last edited 7 hours ago)

Its just a ball rolling down a hill trying to find the lowest point, but its like a super fancy ball with a ton of rules, and the hills are really detailed with like little walls and bridges and stuff.

load more comments
view more: next ›