• @derpgon
    link
    English
    184 months ago

    Not just that, remember it’s just an LLM. It quantifies which tokens (or words and letters, if you will) come up next. It doesn’t matter if it’s factual or fictional - if it’s good enough, it does that.

    LLMs are very confident in lying. I once asked it if there is a magic method to catch magic method calls in PHP - it told me its __magic. Lo and behold, there is and never was such a method. That’s my first and last time I tried it, and there ain’t gonna be a second time in the near future.

    • no banana
      link
      fedilink
      English
      54 months ago

      I asked Snapchats AI thing if it had internet. Yes, it very confidently proclaimed. This was around when Tears of the Kingdom had been released on the switch so I asked what the latest Zelda game was and it was something much much older. Of course that doesn’t necessarily mean anything so I kept prodding for other recent news and was provided nothing.

      My partner asked the same of it and was told very confidently that no, it does in fact not have access to the internet and proceeded to give some long-winded explanation of why.

      Can’t trust those things to say anything correct since they’re just doing what they’ve been constructed to do. String words together into sentences.

    • @[email protected]
      link
      fedilink
      English
      04 months ago

      It can be useful in learning the basics of technology that’s completely unfamiliar to you.

      It’s kinda like how it’s fine to use a wikipedia article as a starting point for research on a subject. But it’s not a good idea to use wikipedia as an authoritative source on a subject.

      It’s also useful as a reminder for for technology you haven’t used in a while. You can fairly quickly get the ordering of the parameters of a well known method and be on your way a lot faster than a google search or going back through your code to find where you’ve done it before.

      It’s also good for mundane tasks like making a class that’ll handle a specific JSON request or handle some data coming from a table in the DB. You know the things where you’re just copying and pasting some property names and entering the corresponding types. Just put in “class for: {“blah”: 69 }” or whatever and save a little time.

      But yeah it’s not going to know anything too technical, it’s not going to know anything about less common problems, it’s not going to know the best algorithm to use, etc. But if you’re just using it for some basic ass shit, it works well enough.

      • @derpgon
        link
        English
        34 months ago

        Wikipedia is usually sourced when it comes to scientific stuff, so it’s a reliable source of information (usually).

        But yeah, for simple and mundane stuff you can check and know instantly if it’s good or not, I totally understand. But for more complex or unknown advanced stuff, not so much.