this post was submitted on 22 Apr 2026
56 points (98.3% liked)

LocalLLaMA

4712 readers
1 users here now

Welcome to LocalLLaMA! Here we discuss running and developing machine learning models at home. Lets explore cutting edge open source neural network technology together.

Get support from the community! Ask questions, share prompts, discuss benchmarks, get hyped at the latest and greatest model releases! Enjoy talking about our awesome hobby.

As ambassadors of the self-hosting machine learning community, we strive to support each other and share our enthusiasm in a positive constructive way.

Rules:

Rule 1 - No harassment or personal character attacks of community members. I.E no namecalling, no generalizing entire groups of people that make up our community, no baseless personal insults.

Rule 2 - No comparing artificial intelligence/machine learning models to cryptocurrency. I.E no comparing the usefulness of models to that of NFTs, no comparing the resource usage required to train a model is anything close to maintaining a blockchain/ mining for crypto, no implying its just a fad/bubble that will leave people with nothing of value when it burst.

Rule 3 - No comparing artificial intelligence/machine learning to simple text prediction algorithms. I.E statements such as "llms are basically just simple text predictions like what your phone keyboard autocorrect uses, and they're still using the same algorithms since <over 10 years ago>.

Rule 4 - No implying that models are devoid of purpose or potential for enriching peoples lives.

founded 2 years ago
MODERATORS
 

Recently made a post about the 35b MOE. Now the dense 27b variant has been released.


you are viewing a single comment's thread
view the rest of the comments
[–] venusaur@lemmy.world 7 points 2 weeks ago (26 children)

Can I get a recommendation for idiots guide to running this model locally and what kinds of expectations with the recommended setup/s?

I presume I need at least a 24GB GPU? Can I trust buying a used one or should buy new?

What about GPU rental/cloud services?

Do I run it through terminal or it has a UI?

Does it have all the same features and ease of use as public LLM’s like Claude and ChatGPT including MCP?

What else should I know?

Tons of questions. Where can I learn this stuff without breaking the bank?

Thanks!

[–] Rookeh@startrek.website 14 points 2 weeks ago (12 children)

There's a lot to cover here but I'll try to touch on each point:

The key requirement is fast memory that can be addressed by your GPU, and ideally a lot of it - hence the insane cost of this hardware right now.

Remember that you need space for the model's weights (think of this as its 'knowledge base') and the context window, which is basically the data needed for the LLM to keep track of your current conversation with it (effectively its short term memory).

With smaller pools of VRAM (8-16gb) you will have to compromise and either have a more capable model that will lose context quickly and start hallucinating, or a less capable model that can maintain a session for a bit longer but overall less 'smart'.

For software - there are a couple of options for running the LLM itself, Llama.cpp is one of the more popular tools and is the one that I use. It has a web UI with the usual chat interface, and also exposes an API that you can plug other tools (e.g. opencode) into, depending on your use case.

In terms of hardware recommendations, at 20GB+ of VRAM you do have a bit more headroom compared to more consumer grade GPUs, but to be honest the most cost effective way to get a shitload of VRAM is likely not with a dedicated GPU but actually using a system based around a recent APU.

I got a Minisforum MS-S1 last year for exactly this purpose. It is based on AMD's Strix Halo platform which it has in common with the Framework Desktop and a couple of other similar devices.

It has 128gb of unified RAM which can be divided between the GPU and CPU however you like, so plenty of capacity for even fairly chunky models. It also uses a tiny amount of power compared to a more traditional system with a dedicated GPU, while also giving really reasonable performance for most AI workloads, more than enough for use in a homelab.

For cloud rental - doable, but pricing is a factor, and of course this will not actually be running locally.

Usability - manage your expectations, but overall for a lot of use cases and of course depending on the model that you are running and the resources you throw at it, it can be comparable with especially older iterations of ChatGPT, Gemini etc.

But remember, you are not a Google or an Anthropic and do not have an infinite pool of compute to throw at your model, nor do you have access to the specific models they are using.

[–] venusaur@lemmy.world 2 points 2 weeks ago (11 children)

Thank you!!! This is awesome!

When using llama.cpp, does it pass your prompts through a web server to process? Any privacy concerns?

Sounds like I’m looking at a few grand to run something decent. I’ll need to do more research before I commit to that big of a purchase, but your machine sounds nice!

Are there any small models you recommend that can run on 16GB DDR4 and an i7? No dedicated graphics card with separate VRAM. Maybe I’ll just experiment with something v small first.

Thanks again!

[–] Stiggyman@ani.social 4 points 2 weeks ago (1 children)

You would be surprised by the smaller 7-12B LLMs. Give them tools and they can work well

[–] venusaur@lemmy.world 1 points 2 weeks ago (1 children)

Thanks! I imagine you can create and pull tools from somewhere. Where is a good place to find prebuilt tools?

load more comments (9 replies)
load more comments (9 replies)
load more comments (22 replies)