• 0 Posts
  • 292 Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle



  • Buddahriffic@lemmy.world
    cake
    toScience Memes@mander.xyzlik lik lik
    link
    fedilink
    English
    arrow-up
    18
    ·
    10 days ago

    All cats are finely tuned stealth killing machines (though some are lazy). House cats are just optimized for rodent-sized prey, though they are still capable of putting up a decent fight against larger things. Though I’m curious if cats evolved to trigger “cute” recognition or if primates evolved to find things that include cats cute.







  • If it’s a topic that has been heavily discussed on the internet or in literature, LLMs can have good conversations about it. Take it all with a grain of salt because it will regurgitate common bad arguments as well as good ones, but if you challenge it, you can get it to argue against its own previous statements.

    It doesn’t handle things that are in flux very well. Or things that require very specific consistency. It’s a probabilistic model where it looks at existing tokens and predicts what the next one is most likely to be, so questions about specific versions of something might result in a response specific to that version or it might end up weighing other tokens more than the version or maybe even start treating it all like pseudocode, where descriptive language plays a bigger role than what specifically exists.



  • My guess is what’s going on is there’s tons of psuedo code out there that looks like it’s a real language but has functions that don’t exist as placeholders and the LLM noticed the pattern to the point where it just makes up functions, not realizing they need to be implemented (because LLMs don’t realize things but just pattern match very complex patterns).



  • Don’t get me wrong, it’s decent entertainment. It’s just disconnected from any kind of scientific or technical reality and a part of me is rolling my eyes for a lot of it. And maybe a bit frustrated because I like thinking about things and analyzing and problem solving. I prefer hard magic systems over soft magic ones because there’s no point in thinking about soft magic systems because they just do whatever the plot calls for when it calls for it while hard magic systems have to build up to it and need to be clever to surprise viewers.

    Tony uses a soft technology system that defies thought.


  • Yeah, Tony was capable of doing whatever the writers wrote him to be capable of, just like every other fictional character. And the writers wrote him doing it in a manner similar to the “programming” in Swordfish or the tech work in NCIS (or whatever show it was that had multiple people typing on one keyboard at the same time). As in difficult to tell if they had any understanding of it at all, sensationalised it for entertainment purposes, deliberately made it unlike any real programming to troll people who do understand programming, or some combination of all those.

    MCU science might as well just be another school of magic. Especially when Tony’s suit could shapeshift and convert between matter and energy because of some quantum mumbo jumbo. He just cast a quantum spell on it.

    Also every movie had multiple impacts in that iron suit that should have been worse for him than most car crashes.






  • Buddahriffic@lemmy.world
    cake
    to196@lemmy.blahaj.zoneRule
    link
    fedilink
    arrow-up
    1
    ·
    1 month ago

    It can actually be quicker to store them compressed because memory and bus bandwidth is often a bottleneck. So instead of the cpu or gpu wasting cycles waiting for data to be moved, some of that movement time is shifted to the processors by using compression. Especially if there are idle cores that could be put on that task.

    As for going from one compression format to another, you could store them in the final format (and convert on install if it differs between hardware setups, repeating if another hardware setup is detected).

    Though if there’s any processing done on the uncompressed data (like generating mipmaps or something), that conversion might not even cost extra because it needs to be decompressed and the new data compressed again anyways.

    Though on that note, you’d get faster load times by just storing all of those preprocessed and faster install times by just sticking it all in the install download, so there is still a conflict between optimal load speeds and minimal storage space.