• TheWeirdestCunt@lemmy.today
        link
        fedilink
        arrow-up
        1
        ·
        1 hour 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.

      • VeganCheesecake@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        12
        arrow-down
        1
        ·
        8 hours 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
          3
          arrow-down
          25
          ·
          18 hours ago

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

          • humanamerican@lemmy.zip
            link
            fedilink
            arrow-up
            3
            ·
            4 hours ago

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

            • Mwa@thelemmy.club
              link
              fedilink
              English
              arrow-up
              2
              arrow-down
              21
              ·
              17 hours ago

              well atleast every prompt you ask it wont harm the environment

              • calcopiritus@lemmy.world
                link
                fedilink
                arrow-up
                3
                ·
                3 hours 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.

              • j4yc33@piefed.social
                link
                fedilink
                English
                arrow-up
                13
                ·
                edit-2
                11 hours 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
                  6
                  ·
                  edit-2
                  5 hours 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
                8
                ·
                10 hours 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”

        • Mwa@thelemmy.club
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          1
          ·
          edit-2
          5 hours 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
            ·
            5 hours 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
                ·
                edit-2
                2 hours 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.