There is a machine learning bubble, but the technology is here to stay. Once the bubble pops, the world will be changed by machine learning. But it will probably be crappier, not better.

What will happen to AI is boring old capitalism. Its staying power will come in the form of replacing competent, expensive humans with crappy, cheap robots.

AI is defined by aggressive capitalism. The hype bubble has been engineered by investors and capitalists dumping money into it, and the returns they expect on that investment are going to come out of your pocket. The singularity is not coming, but the most realistic promises of AI are going to make the world worse. The AI revolution is here, and I don’t really like it.

  • lloram239@feddit.de
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    You do not query the LLM directly. The LLM just provides the baseline language understanding. You use the LLM to extract information out of websites and convert it into a machine readable format. You can do that with ChatGPT today:

    Prompt: Extract important product information out of this text and format it as json:
    
    [copy and paste random Amazon.com website]
    
    Answer:
    Here's the important product information extracted from the text and formatted as JSON:
    {
      "Product Name": "kwmobile 8 Port Patch Panel - RJ45 Cat6 Shielded Network Splitter Panel with Ground Wire",
      "Price": {
        "Discounted Price": "$20.99",
        "Typical Price": "$22.99"
      },
      "Color": "Black",
      "Brand": "Kwmobile",
      "Connector Type": "RJ45",
      "Cable Type": "Ethernet",
     ...
    }
    

    That’s the power of LLMs. They aren’t better a Google, they are a way to interface with semantic information stored in human readable text (or pictures or sound). And with that extracted information you can go and built a better Google or just let the LLM browse the web and search for information relevant to you.