• Scrubbles@poptalk.scrubbles.tech
    link
    fedilink
    English
    arrow-up
    1
    ·
    4 months ago

    saying the quiet part out loud… big tech won’t like that.

    I’ve found like, 4 tasks that are really helped with by AI, and I don’t have the faintest idea how you could monetize any of them beyond “Subscribe to chatgpt”

    • Hegar@fedia.io
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      At my previous job their was a role where you just called insurance companies and asked them incredibly basic questions about what they planned to do for a patient with diagnosis X and plan Y. This information should be searchable in a document with a single correct answer, but insurance companies are too scummy for that to be reliable.

      In 2021 we started using a robot that sounded like a human to call instead. It could handle the ~80%+ of calls that don’t use any critical thinking. At a guess, that’s maybe 5-10% of our division’s workforce that wasn’t needed anymore.

      With the amount of jobs like this that are 100% bullshit, I’m sure there are plenty of other cases where businesses can save money by buying an automated bullshit generator, instead of hiring a breathing bullshit generator.

      • Artyom@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        The problem is that 20% failure rate has no validation and you are 100% liable for the failures of an AI you’re using as a customer support agent, which can end up costing you a ton and killing your reputation. The unfixable problem is that an AI solution takes a ton of effort to validate, way more than just double checking a human answer.

        • jarfil@beehaw.org
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          It’s not a 20% failure rate when the chatbot routes calls to a human agent whenever it’s more than x% unsure about what to say.

          AI solutions still get the 80% “bottom of the barrel” menial tasks perfectly well.

          • coffeetest@beehaw.org
            link
            fedilink
            arrow-up
            0
            ·
            4 months ago

            It wont know it doesn’t know. At the current state of AI, it doesn’t seem to have almost any sense of what is right and wrong or a way to validate that - even when you tell it, it is wrong. Maybe there are systems that can but I am not aware of them.

            • jarfil@beehaw.org
              link
              fedilink
              arrow-up
              0
              ·
              edit-2
              4 months ago

              The current state of AI chatbots, assigns a “confidence level” to every piece of output. It signals perfectly well when and where they should look for more information… but humans have been pushing them to “output something, anything”, instead of excusing itself for not knowing something, or running some additional processes in order to look for the missing information.

              As of this year, Copilot has been running web searches to complement its lack of information, and Gemini is running both web searches, and iteratively self-checking its own answer in order to refine it (see “drafts”). It also seems like Gemini might be learning from humanity’s reactions to its wrong answers.

              • Justin@lemmy.jlh.name
                link
                fedilink
                arrow-up
                1
                ·
                3 months ago

                I thought confidence levels were for image recognition? How do confidence levels work for transformer LLMs?

                • jarfil@beehaw.org
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  3 months ago

                  LLMs generate output one token at a time. Each token comes with a confidence level by the model, about whether it’s the only possible token to continue the sequence. A model is only 100% confident in its output, if it reproduces a training text verbatim. With any temperature above 0, they veer off the 100% confidence path, which lets them leverage the concept association they came up with during training, makes their output more useful.

                  For every generated text, you could get a confidence heat map, then ask the model to refine sections that don’t meet a desired level of confidence. Especially the parts where a model makes stuff up, or hallucinates, are likely token sequences with much lower confidence than the rest.

                  Running a model several times, focusing on the sections with lower confidence, getting additional data from other sources like the internet, or some niche expert system, could eliminate many of the nonsense sections… and I have a reasonably suspicion that Google’s Gemini does exactly that, refining each output with 4 additional iterations, instead of blindly spitting out the first one.

                  • Justin@lemmy.jlh.name
                    link
                    fedilink
                    arrow-up
                    1
                    ·
                    edit-2
                    3 months ago

                    I guess that makes sense, but I wonder if it would be hard to get clean data out of the per-token confidence values. The LLM could be hallucinating, or it could just be generating bad grammar. It seems like it’s hard enough already to get LLMs to distinguish between “killing processes” and murder, but maybe there could be some novel training and inference techniques that come up.