• @joe@lemmy.world
    link
    fedilink
    English
    310 months ago

    I have a weak and high level grasp of how LLMs work, but what you say in this comment doesn’t seem correct. No one is really sure why LLMs sometimes make things up, and a corollary of that is that no one knows how difficult (up to impossible) it might be to fix it.

    • @eating3645@lemmy.world
      link
      fedilink
      English
      6
      edit-2
      10 months ago

      Let me expand a little bit.

      Ultimately the models come down to predicting the next token in a sequence. Tokens for a language model can be words, characters, or more frequently, character combinations. For example, the word “Lemmy” would be “lem” + “my”.

      So let’s give our model the prompt “my favorite website is”

      It will then predict the most likely token and add it into the input to build together a cohesive answer. This is where the T in GPT comes in, it will output a vector of probabilities.

      “My favorite website is”

      "My favorite website is "

      “My favorite website is lem”

      “My favorite website is lemmy”

      “My favorite website is lemmy.”

      “My favorite website is lemmy.org

      Woah what happened there? That’s not (currently) a real website. Finding out exactly why the last token was org, which resulted in hallucinating a fictitious website is basically impossible. The model might not have been trained long enough, the model might have been trained too long, there might be insufficient data in the particular token space, there might be polluted training data, etc. These models are massive and so determine why it’s incorrect in this case is tough.

      But fundamentally, it made up the first half too, we just like the output. Tomorrow some one might register lemmy.org, and now it’s not a hallucination anymore.

    • @BetaDoggo_@lemmy.world
      link
      fedilink
      310 months ago

      LLMs only predict the next token. Sometimes those predictions are correct, sometimes they’re incorrect. Larger models trained on a greater number of examples make better predictions, but they are always just predictions. This is why incorrect responses often sound plausable even if logically they don’t make sense.

      Fixing hallucinations is more about decreasing inaccuracies rather than fixing an actual problem with the model itself.