| ▲ | djyde 6 hours ago | |||||||||||||||||||||||||||||||
What are the use cases for these small models? Is there anyone using models of this scale in their daily life who could share their experience? | ||||||||||||||||||||||||||||||||
| ▲ | philipkglass 5 hours ago | parent | next [-] | |||||||||||||||||||||||||||||||
I have vLLM running on a Linux machine in my basement, connected with Tailscale, and I use small models as part of tasks like this: - Transcribing scanned documents into formatted text - Captioning/describing images and classifying them for audience suitability (includes anti-spam) - Matching documents with relevant Wikipedia pages for tagging I don't use them like frontier models. I break the work down into micro-tasks with one clear goal for each prompt. I write a lot of glue software to make the complete flow work. I was working on all of these tasks before LLMs appeared on the scene. The LLMs have allowed me to replace a lot of complicated code with less code plus a model, while achieving better results. I use local models for reasons of cost and control. I already had the workstation and GPU. The only running cost is electricity. I have used proprietary models from OpenAI and Google for some of these tasks, but I also encountered churn when the models I built my tools around were retired. I don't worry about that when I have the weights saved locally. | ||||||||||||||||||||||||||||||||
| ▲ | robgough 5 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I've got a home-built dictation app that uses a local model to clear up the text and fix grammar. It was super easy to build. I’m extending it to capture meeting notes and summarise too. All on-device. I saw a little app the other day, I think someone posted on here, that looks at your screenshot and renames the file based off the contents of the file. There's tons of little examples like that. For a lot of use cases, you really don't need the frontier models. | ||||||||||||||||||||||||||||||||
| ▲ | pilooch 21 minutes ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
Yes, all my emails gyer sorted out by a finetuned gemma. There are turned into images passes to the model, as multimodal is so practical. | ||||||||||||||||||||||||||||||||
| ▲ | properbrew 5 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I think small models have a very good niche for specific tasks. I utilise a fine tuned Phi-4 model (smaller than this one) that fits in about 3.5gb of RAM (not vram) for the document processing side of things for the desktop app I develop (a bit of a shameless plug - whistle-enterprise.com). If you have a very specific idea for local model use you can find a way to make it work very well, you don't even need to have a graphics card or NPU chip. You just have to be extremely constrained in how it's used. I think as a generic chatbot they're not great, I'd use a hosted SOTA model and I'm a big fan of local LLMs myself. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
| ▲ | thot_experiment 3 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I don't know about this model, but the next one up, the 31B I've been using as an agentic coding assistant in OpenCode, and basically anything that's easy enough that I'd trust Sonnet to handle, I trust Gemma 4 to handle and it's been doing a great job, it surprises me positively much more often than negatively. I not infrequently run into situations where Gemma 4 fails to do the task and I switch to Opus 4.7 and it fails also. | ||||||||||||||||||||||||||||||||
| ▲ | quickthoughts 4 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I use small models like Gemma to improve transcriptions from ASR models amongst other micro-tasks. I actually built out a fine-tuning whisper pipeline with all local (smaller) models meaning no cloud/big-tech co is able to train/sell my (private) data. Repo is https://github.com/Rebreda/listenr - mainly geared toward Whisper fine-tuning, AMD hardware and local inference | ||||||||||||||||||||||||||||||||
| ▲ | OtherShrezzing 3 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I use them for research on new features. If my feature is going to interact with a frontier language model in prod, I start with these free local ones which are all competent enough to produce structured output, make tool calls, interact with mcp etc. I don’t care much for the content at the early phase of engineering, I care about the schema & failure modes. Then when I’m getting close to feature-complete, I’ll move to a hosted frontier model for the final integration. Cost savings are enormous if you’re making dozens of calls to language models a minute. | ||||||||||||||||||||||||||||||||
| ▲ | SwellJoe 39 minutes ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I've used Gemma for reviewing and categorizing my writing online over several years (~5 million words across a forum for an OSS project I work on, HN, reddit, etc.), experimenting with training LoRAs (again, on my own writing, since I don't have to worry about ethically sourcing the data if it's all mine), and I'm currently using it to perform web searches and extract data about a specific type of business. It's plenty smart to use a web search MCP to find all the businesses of the right type in a given city, read their website, extract business address, phone number, etc. among other things, and de-dupe and cross-check other sources. I found Gemma 4 to be better, or at least more nuanced, than Gemini 2.5 Flash. And, the new Gemini 3.5 Flash is very good but is unrealistically expensive (ten times more expensive than DeepSeek or MiMo). So, since I don't need extremely fast performance, a self-hosted Gemma 4 wins for a bunch of stuff. I've also found Qwen 3.6 27B to be shockingly good at finding security bugs for its size. It beats several larger models, and is close to Gemini Pro 3.1 (but Gemini 3.5 Flash surprisingly beats it soundly). Since it only costs electricity, and my electricity is cheap and 100% renewable, I can use it more broadly than I might otherwise use a hosted model. All that said, the smart money is still on buying the subsidized tokens from the providers that offer them, rather than buying the hardware needed to run models that are 30+GB in size, as all of the ones I've been using regularly are (8-bit quantization, as they get a little dumber for every bit you drop below that). A $100 subscription to Claude or Codex currently provides access to the best models at a heavily discounted rate. And, DeepSeek/MiMo are extremely cheap, one or more orders of magnitude cheaper than the top models from Anthropic or OpenAI, if you need an API for automated usage. I spent about $4000 on my two inference machines (a Strix Halo with 128GB unified RAM, and a new desktop build based around two cheap old 32GB AMD data center GPUs), which buys a lot of tokens for tiny models like this...probably a couple/few years worth. But, I like tinkering, so having an excuse to play with hardware is its own reward. If it happens to pay me back some of that money, that's a bonus. Of course, as the major providers decide they need to ring the cash register and stop burning money on subsidized tokens, that math may change, and I may find I'm grateful to have already bought this stuff before the RAM prices made everything 2-3x more expensive. But, I think if you're not interested in learning about the technology and doing your own training experiments and such, you should probably not try to run stuff locally most of the time. | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
| ▲ | mhitza 5 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
In theory, locally you'd use these where lossiness is acceptable for audio transcription and image labeling (as simple examples). In practice I haven't got around to building something around multimodality since I'm primarily using their text generation capabilities. | ||||||||||||||||||||||||||||||||
| ▲ | Aachen 5 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
"Small" models are the ones I can run myself on my own terms. LLMs aren't useful enough for me to justify spending hundreds of euros on a GPU with 16GB VRAM or something, and that's assuming I have the rest of the desktop just laying around. Back when I checked (before the RAM price hike), these models weren't meaningfully better than 4-8GB ones anyway, you'd have to go for the top tier cards at 24 or 32 GB iirc to get something vaguely in the direction of the SaaS versions, and that was absolutely out of my budget. Even if that changed, so have hardware prices so it'd probably still work out the same | ||||||||||||||||||||||||||||||||
| ▲ | Xiol 5 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||
I've yet to see someone answer a question like this with a decent, useful answer. | ||||||||||||||||||||||||||||||||
| ▲ | airstrike 4 hours ago | parent | prev [-] | |||||||||||||||||||||||||||||||
This is one https://post.bot/ | ||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||