D
2

Dropped $300 on a local AI model tool for my laptop and it crashed after 3 runs

Bought Llama.cpp with a fancy front end to run it locally instead of using cloud APIs. Worked decent for two days but then my 8GB RAM couldn't handle a basic text task and it froze up. Anyone else find a lightweight local AI that actually runs smooth on older hardware?
2 comments

Log in to join the discussion

Log In
2 Comments
grant728
grant72824d ago
Has anybody checked if your laptop is thermal throttling? I fried two USB-C hubs before I figured out my old Dell was hitting 95 degrees on the CPU and the memory controllers started acting up. Try running HWMonitor in the background while you test it. The crash might not be the AI tool itself but the whole system shutting down to save itself. My fix was pointing a desk fan at the intake vents, which sounds stupid but dropped my temps 20 degrees and suddenly 8GB RAM ran stable.
4
sam_wood60
sam_wood6025d ago
8GB is the problem but not for the reason you think. I ran into the same wall a few months back and found out most of these local tools are loading the full model into RAM even when you dont need it all. Try using llama.cpp with the -ngl flag to offload layers to your GPU if you have one, even a weak one helps. It cut my RAM usage from 7.5GB down to under 4GB for the same task. Also make sure you are not running a quantized model below 4 bits, those crash more on low memory because of buggy code paths. The lightweight version nobody talks about is using RWKV with the raven model, it runs on 2GB of RAM and handles text tasks way better than youd expect for the size.
3