Hi,

I wanted to run some Large Language Models locally. Something like Private GPT or Medium Article on my local Apple Silicon to enhance my privacy but also get some additional help.

Does anyone have recommendations or guides I could follow?

Thank you very much.

  • @[email protected]
    link
    fedilink
    English
    2
    edit-2
    9 months ago

    I don’t know what’s your intention.
    I’m no expert or highly qualified in any way, so please correct me, but I don’t know if that’s the right way.

    LLMs usually need lots of computing power, optimally in form of a GPU.
    I use GPT4All, and when I send a prompt, I notice the temps/ fan speed and usage of my GPU turning up instantly to almost 100%. If it’s a longer one, my PC sounds like a helicopter 😁

    In terms of hosting a server, you want something barely good enough for your service, e.g. running your cloud. This results in way less power draw, which is what you want, since it runs 24/7. Something powerful enough to run LLMs comfortably would likely draw lots of power, even an Apple Silicon.

    I think, you’re better off just using GPT4All on your gaming PC if you need it.

    I hope I’m wrong, and that M1s draw barely any power, especially in idle.
    And even if I am, they (almost) can only run MacOS, which wouldn’t be a good server OS.

    • @[email protected]
      link
      fedilink
      English
      3
      edit-2
      8 months ago

      The tldr as I understand it is that Mac M1/M2 devices are unique in that the vram (gpu ram) is the same as the normal ram. This sharing allows LLM models to run on the gpu of those chips, and in their “vram” as well, allowing you to run bigger models on smaller devices.

      Llama.cpp was the software that users did this with originalky. I can’t find the original guide/article I looked at, but here is a github gist, where the commenters have done benchmarks:

      https://gist.github.com/cedrickchee/e8d4cb0c4b1df6cc47ce8b18457ebde0

      • @[email protected]
        link
        fedilink
        English
        28 months ago

        Alright, interesting… As I said, I’m no expert or anything and this was just my noob optinion.

        Thank you for the correction and further resources!

        • @plsnotrackingOP
          link
          English
          18 months ago

          Thank you for the discussion folks, I’ll try out Llama.cpp and report back.

          I also saw the Neural Engine Stuff hasn’t been merged into main kernel yet but it’s available as a separate out of tree patch. Hopefully merging that will help with more model support? (Pure guesswork)

          I also saw that PCL stuff isn’t ready yet and u/marcan42 said it’s WIP that also might be helpful in getting better model support because read somewhere that metal isn’t going to be a part of the Asahi kernel ever(?)

          I’m no expert at any of this but hopefully we’ll be able to run some sort of GPTs locally someday.

          Good luck.

  • @c10l
    link
    English
    28 months ago

    On macOS I’ve been using Ollama. It’s very easy to setup, can run as a service and expose an API.

    You can talk to it directly from the CLI (ollama run ) or via applications and plugins (like https://continue.dev ) that consume the API.

    It can run on Linux but I haven’t personally tried it.

    https://ollama.ai/