this post was submitted on 28 Jul 2026
85 points (91.3% liked)

Technology

43171 readers
319 users here now

This is the official technology community of Lemmy.ml for all news related to creation and use of technology, and to facilitate civil, meaningful discussion around it.


Ask in DM before posting product reviews or ads. All such posts otherwise are subject to removal.


Rules:

1: All Lemmy rules apply

2: Do not post low effort posts

3: NEVER post naziped*gore stuff

4: Always post article URLs or their archived version URLs as sources, NOT screenshots. Help the blind users.

5: personal rants of Big Tech CEOs like Elon Musk are unwelcome (does not include posts about their companies affecting wide range of people)

6: no advertisement posts unless verified as legitimate and non-exploitative/non-consumerist

7: crypto related posts, unless essential, are disallowed

founded 7 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] vane@lemmy.world 6 points 4 weeks ago (3 children)

Those models are for general use. If you have business use case and data related to it you can finetune model for specific use that will outperform all of frontier models and run at fraction of cost.

[–] yogthos@lemmy.ml 3 points 4 weeks ago

that's the other huge advantage of open models you can run locally

[–] Dnb@lemmy.dbzer0.com 2 points 4 weeks ago (1 children)

How can you run a local model for better coding support than fable/opus?

[–] vane@lemmy.world 2 points 4 weeks ago* (last edited 4 weeks ago)

You can't right now because there is no dataset available for fine tuning. I'm just saying that it's possible to fine tune 8B-35B parameter model in int4 that will outperform those models ex. for single programming language and developer specific problems. You can read example of fine tuned 8B model here https://fermisense.com/when-machines-take-the-wheel/

[–] madcaesar@lemmy.world 0 points 4 weeks ago (1 children)

How do you get into this? Any articles you can share? OP says you can run on your desktop... How? Doesn't this stuff require huge data centers?

[–] vane@lemmy.world 1 points 4 weeks ago (1 children)

Running model that is good at everything require huge amount of energy and huge data center. Those models are mixture of experts. Latest Kimi K3 have 896 experts. Imagine you have company with 896 employees. Each question involves 16 employees to figure out what to do in what area of your business. Like a brainstorm to solver problem. Now if you know exactly what you want and in which area you actually need only 1-5 people. Like an agile team instead of all those people that you have. So you can hire just couple Kimi K3 experts. 16 experts are 100B parameters so roughly 1 expert in frontier open source model is 6B parameters. 5 experts is 30B parameters. You can run 27B Qwen 3.6 quantized into int4 on your computer.

I posted link below to example where they fine tuned model ( take it like a employee training ) for specific task.

[–] Starfighter@discuss.tchncs.de 1 points 4 weeks ago

An important caveat to that explanation is that the mixture of experts gets evaluated for every token and not for high level tasks as in the example. There will be certain "experts" for looking at indentation tokens, or ones that look at specific word beginnings/prefixes etc.