• 0 Posts
  • 46 Comments
Joined 10 months ago
cake
Cake day: June 4th, 2025

help-circle
  • The only thing that changes is the data that is passed to the LLM, which for each iteration includes the last token that the LLM itself generated. So yes, sort of. The LLM itself doesn’t change state; just the data that is fed into it.

    It’s also non-deterministic insofar as similar inputs will not necessarily give similar outputs. The only way to actually predict its output is to use the exact same input - and then you only get identical token probability lists on the other end. Every LLM chatbot, by default, will then make a random selection based on those probabilities. It can be set to always pick the most probable token, but this can cause problems.


  • …The Planck constant is a set distance. It’s being used here to define other things as a constant. The very article on the kilogram states outright that SI units’ foundation is three constants: “a specific transition frequency of the caesium-133 atom, the speed of light, and the Planck constant.”

    Vacuum permeability is how much electric currents affect magnetic fields in a vacuum. As in, when there are no other interferences. It is not variable. The speed of light when there is no interference is not ‘affected by’ vacuum permability any more than a cartesian graph is ‘affected by’ the set of real numbers. Vacuum permeability describes vacuum, it doesn’t define it. Same goes for permittivity.

    You ARE correct about the kilogram no longer being a number of specific atoms, though.


  • The two constants - the speed at which light moves, and the unperturbed ground-state hyperfine transition frequency of cesium - can be combined to define every measurement of time, length, and velocity. They are the constants by which everything else is defined.

    Throw in mass, which is easy - a certain number of atoms of a specific element will also have a universally constant mass. Combine it with the other two constants and you have force, energy, and work, and voila, you can describe nearly everything in classic physics.





  • SparroHawc@lemmy.zipto196@lemmy.blahaj.zoneNo hope rule
    link
    fedilink
    English
    arrow-up
    2
    ·
    12 days ago

    The issue is more that English dub voice actors tend to be … not as good, and wind up sounding stilted. Watch the dubbed version of Princess Mononoke, and compare it to … uh…

    You know, it’s been so long since I watched any English dubs that I’ve plum forgotten what some of the worst offenders are. Naruto? Sailor Moon?



  • The best thing about it was all the functions that existed for string manipulation, since every data record was just a big string with demarcations for columns (and values and subvalues, making it technically a 4D database). You could use it to consume nearly any data format and throw together a quick-and-dirty parser in minutes. Really good for rapid proof-of-concepts, but occasionally challenging to maintain data integrity when you have all the rope in the world to hang yourself with.

    I miss working with it, compared to SQL which is stupidly rigid and obnoxiously fragile in comparison.



  • ffs, you do not own the games you bought.

    You haven’t owned the games you buy since software licenses became ubiquitous.

    Any business that has over 4% market rate should be forcibly split.

    My dude, 4% is insanity. If you did that, there would be - at absolute bare minimum - 26 different companies for any given market, including distribution. No one would be able to scale to serve global demand in any way, shape, or form. You’d have to route packages through three different companies in order to get a product to your friend in Switzerland. Any product that got popular would see its parent company split. If someone wrote an OS that was too good and everyone decided it was fantastic, the company would somehow have to split in such a way as to divide the OS share between two companies, which would then negate the point of having the same OS as your buddy.

    The problem isn’t market share, it’s enforced market share. Anti-competitive practices. Lobbying. Buying out competition. These are places that Steam demonstrably is more ethical than its competition.

    All Epic had to do in order to capitalize on Fortnite was to make a launcher that was better than (or at least approaching the quality of) Valve’s. Instead, when the starting gun went off, they started walking backwards.






  • You still lose the internal state between each token in the database output. It would let it plan, but it would still be externalizing that planning, one token at a time. Condensing all of the internal state into a single token at a time still means huge losses in detail as well as fragmentation of responses, resulting in all the problems that you see with LLMs.

    Somehow the actual internal state needs to not only be preserved, but fed back into itself. That’s how brains work. Condensing it into tokens isn’t enough.