• VeganCheesecake@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        17
        arrow-down
        1
        ·
        2 days ago

        No? If everyone who uses LLMs globally switched over to a local LLM (after buying the necessary hardware), that’d still be a crazy amount of energy usage, just less centralised.

        • Mwa@thelemmy.club
          link
          fedilink
          English
          arrow-up
          4
          arrow-down
          28
          ·
          2 days ago

          i was trying to say Local LLMS dont destroy the environment(cause its using the power of your pc instead)

              • j4yc33@piefed.social
                link
                fedilink
                English
                arrow-up
                15
                ·
                2 days ago

                If you are browsing Piefed you are probably using about 10-20% of your computer’s resources (if it is a computer capable of running a 4B model).

                When you question the model and it pegs your system out, that is between 5 and 10 TIMES more resource utilization and power waste just to have a question answered that you could have taken the time to research, improve your own critical thinking skills, and learned something without changing your utilization at all.

                Not counting the training debt.

                • Mwa@thelemmy.club
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  arrow-down
                  7
                  ·
                  edit-2
                  1 day ago

                  i forgot about critical thinking, hehe.
                  but i hope my use of AI doesnt ruin it that much.
                  btw the best respones here.

              • NihilsineNefas@slrpnk.net
                link
                fedilink
                arrow-up
                9
                ·
                2 days ago

                “I’m not the one deforesting the amazon but I really love teak furniture, so I’M not the one hurting anybody by buying it”

              • calcopiritus@lemmy.world
                link
                fedilink
                arrow-up
                3
                ·
                1 day ago

                Megacorps don’t burn resources for the shake of it. They do it to train/run LLMS.

                If all that running/training is done by the individual instead, the individual is going to be the one burning the resources.

                In fact, it would probably be more resource intensive.

                Since centralization and scale usually improves efficiency.

                Most people don’t have computer hardware that was built with the sole purpose of training/running LLMs. LLM data centers do. Purpose-built hardware is more efficient than generic hardware.

          • humanamerican@lemmy.zip
            link
            fedilink
            arrow-up
            4
            ·
            1 day ago

            Your computer uses more power when the GPU is “thinking” than when its idle, so there would still be environmental damage.

      • TheWeirdestCunt@lemmy.today
        link
        fedilink
        arrow-up
        5
        arrow-down
        2
        ·
        1 day ago

        Good to see so many people misunderstanding how local hosting works.

        Running your own local LLM is no worse than running a graphically intensive game like cyberpunk 2077 or red dead redemption 2.

        • Mwa@thelemmy.club
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          2
          ·
          edit-2
          1 day ago

          like what?
          plus i tend to use a search engine more often if i can find what i want.

          • jtrek@startrek.website
            link
            fedilink
            arrow-up
            3
            ·
            1 day ago

            For counting letters in a word? That’s like a one line expression in Python or JavaScript (and other languages). JavaScript console is right there in your browser.

              • jtrek@startrek.website
                link
                fedilink
                arrow-up
                3
                ·
                1 day ago
                
                const countOfT = (word) => word.split('').filter(i => i === 't').length
                countOfT('colonialism')
                0 
                
                countOfT('this is an example sentence')
                2 
                

                There’s probably a more elegant way to do it.