I want to fine tune an LLM to “steer” it in the right direction. I have plenty of training examples in which I stop the generation early and correct the output to go in the right direction, and then resume generation.

Basically, for my dataset doing 100 “steers” on a single task is much cheaper than having to correct 100 full generations completely, and I think each of these “steer” operations has value and could be used for training.

So maybe I’m looking for some kind of localized DPO. Does anyone know if something like this exists?

  • hok@lemmy.dbzer0.comOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    3 days ago

    No, it’s unsupervised. In pre-training, the text data isn’t structured at all. It’s books, documents, online sources, all put together.

    Supervised learning uses data with “ground truth” labels.

    • iii@mander.xyz
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 days ago

      Have you worked with (variational) auto-encoders? I think they’re a great example of what I would call unsupervised learning.

      Supervised learning uses data with “ground truth” labels.

      What are “ground truth” labels?

      • hok@lemmy.dbzer0.comOP
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        Ground truth labels are just prescriptive labels that we recognize as being true. The main thing that distinguishes unsupervised from supervised is that in unsupervised learning, what is “good” is learned from the unstructured data itself. In supervised learning, what is “good” is learned from some external input, like “good” human-provided examples.

        • iii@mander.xyz
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 days ago

          Would you call token (N+1), given tokens (1 to N) as a ground truth?

          • hok@lemmy.dbzer0.comOP
            link
            fedilink
            English
            arrow-up
            1
            ·
            3 days ago

            No, in that case there’s no labelling required. That would be unsupervised learning.

            https://en.wikipedia.org/wiki/Unsupervised_learning

            Conceptually, unsupervised learning divides into the aspects of data, training, algorithm, and downstream applications. Typically, the dataset is harvested cheaply “in the wild”, such as massive text corpus obtained by web crawling, with only minor filtering (such as Common Crawl). This compares favorably to supervised learning, where the dataset (such as the ImageNet1000) is typically constructed manually, which is much more expensive.

            • iii@mander.xyz
              link
              fedilink
              English
              arrow-up
              2
              ·
              3 days ago

              So supervised vs unsupervised, according to you, is a property of the dataset?

              • hok@lemmy.dbzer0.comOP
                link
                fedilink
                English
                arrow-up
                1
                arrow-down
                1
                ·
                3 days ago

                Sorry, I really don’t care to continue talking about the difference between supervised and unsupervised learning. It’s a pattern used to describe how you are doing ML. It’s not a property of a dataset (you wouldn’t call Dataset A “unsupervised”). Read the Wikipedia articles for more details.