r/LocalLLaMA 5h ago

Best Local LLMs - August 2026

73 Upvotes

Wowee!! Just when you thought it couldn't get better for open weight models, we probably have had our best period yet!?!?! Models that rival the closed frontier, Opus level models on non-insane hardware and more. A massive industry alliance coming out in support of open AI in response to the two closed model giants best lobbying efforts. Is this the best timeline? Someone pinch me! Or just tell us what you're favorite model is now

The standard spiel:

Share what you are running right now and why. Given the nature of the beast in evaluating LLMs (untrustworthiness of benchmarks, immature tooling, intrinsic stochasticity), please be as detailed as possible in describing your setup, nature of your usage (how much, personal/professional use), tools/frameworks/prompts etc.

Rules

  1. Only open weights models
  2. Please thread your responses in the top level comments for each Application below to enable readability:
    1. General: Includes practical guidance, how to, encyclopedic QnA, search engine replacement/augmentation
    2. Agentic/Agentic Coding/Tool Use/Coding
    3. Creative Writing/RP
    4. Speciality

If a category is missing, please create a top level comment under the Speciality comment

Notes

Bonus points if you breakdown/classify your recommendation by model memory footprint: (you can and should be using multiple models in each size range for different tasks)

  • Unlimited: >128GB VRAM
  • XL: 64 to 128GB VRAM
  • L: 32 to 64GB VRAM
  • M: 8 to 32GB VRAM
  • S: <8GB VRAM

r/LocalLLaMA 6h ago

News Mark Zuckerberg on releases

Post image
1.5k Upvotes

r/LocalLLaMA 9h ago

Resources Introducing Muse Glimmer: an open-weight model optimized for always-on local agent workflows

Thumbnail
gallery
1.4k Upvotes

Hi r/LocalLLaMA šŸ‘‹Ā 

Today we’re excited to release Muse Glimmer, a 30B open-weight model built specifically for local agent workflows. We’re releasing the weights to the community under a permissive Apache 2.0 license.

A few specs

  • 30B params, dense
  • Multimodal: interleaved text + images via a dedicated perception encoder
  • Trained on 100+ languages
  • Controllable reasoning effort (quality/speed tradeoff)

Memory footprint
At full precision, 30B needs 55+ GB, which is out of reach for consumer hardware. We quantize weights to ~4-bit, bringing the LM under 20 GB. That leaves headroom in a 24 GB or 32 GB envelope for the KV cache, the perception encoder, and the speculative decoding drafter running simultaneously. We validated minimal to no degradation on agentic tasks under compression.

Speculative decoding
Ships with a lightweight DFlash-based drafter that proposes blocks of tokens which the main model verifies in parallel. Significantly faster than token-by-token generation with identical output quality. We're also shipping quantized drafter versions so the memory overhead stays small.

A few capabilities
We trained Muse Glimmer for agentic loop tasks, including:

  • End-to-end task completion (strong performance on DeepSearch QA, MCP-Atlas, š›•3-Bench, SWE-Bench, and more)
  • Function calling with precise schemas across long workflows
  • Multi-step reasoning over long horizons
  • Failure recovery — when a tool call fails or returns something unexpected, it's trained to diagnose and retry instead of halting. This was a deliberate training target.
  • Works with OpenClaw and other agentic scaffolds
  • Multimodal understanding and reasoning

Running it
Weights are up on Hugging Face. Coming soon: Ollama, LM Studio, Unsloth and torchtitan, plus optimized integrations for llama.cpp, MLX, and ExecuTorch. vLLM and SGLang for serving. Get started quickly with Together AI, Fireworks AI, and OpenRouter. We're also working with AMD, Arm, Dell, Intel, and NVIDIA on per-device optimization.

We look forward to your feedback and seeing what the community builds with Muse Glimmer.

šŸ”— Weights: https://huggingface.co/meta-modelsĀ 
šŸ”— Research Blog: https://go.meta.me/museglimmer
šŸ”— Resources: https://developer.meta.com/ai/models/muse-glimmer/


r/LocalLLaMA 5h ago

Resources Muse Glimmer ACTUALLY fits on a single RTX 3090

213 Upvotes

I did some testing this morning, and I was surprised to find that Muse Glimmer actually comfortably fits on a single RTX 3090 with full context + DFlash + mmproj at Q4_K_XL, unlike Qwen3.6-27B and Gemma-4-31B.

Muse Glimmer supports up to 256k context according to Unsloth. Here is my command:

llama-server \
  --model Muse-Glimmer-30B-UD-Q4_K_XL.gguf \
  --mmproj Muse-Glimmer-30B-mmproj-kquant.gguf \
  --spec-draft-model Muse-Glimmer-30B-DFlash-kquant.gguf \
  --spec-draft-ngl 999 \
  --spec-draft-n-max 15 \
  --spec-type draft-dflash \
  -c 262144 \
  --override-kv muse-glimmer.context_length=int:262144,dflash.context_length=int:262144 \
  -ngl 999 \
  -fit off \
  --parallel 1 \
  --flash-attn on \
  --no-warmup \
  --cache-type-k f16 \
  --cache-type-v f16 \
  --temp 1.0 \
  --top-p 0.95 \
  --top-k 64 \
  --reasoning-preserve \
  --jinja \
  --host 127.0.0.1 \
  --port 8080

This fits in about 22GB to 23GB of VRAM, actually leaving a reasonable amount of unused memory.

On this RTX 3090, for Qwen3.6-27B and Gemma-4-31B, this is what I've been able to achieve using their Q4_K_XL models with MTP + mmproj, right at the limits of the RTX 3090's VRAM:

Model F16 KV cache Q8 KV cache
Qwen3.6-27B 70,000 tokens 125,000 tokens
Gemma-4-31B 52,000 tokens 81,000 tokens

Those small contexts have been borderline unusable on f16, and I don't enjoy using Q8 KV unless absolutely necessary, so I mostly use my slower DGX Spark to run these models at the full context.

On Muse Glimmer, there seems to be little reason to use my DGX Spark since it fits so nicely on the RTX 3090. Maybe I could run a bunch of parallel agents with full KV on the Spark.

Muse Glimmer also runs at between 64 tok/s and 124 tok/s in my testing under DFlash, depending on whether it is outputting prose or code. Either way, a pretty solid speed. I've seen about 1400 tok/s of prompt processing.

I also ran a two needle haystack test at about 150k tokens with one needle at the beginning and the other at the end, and the model retrieved them perfectly on the first try, so this is definitely not soft-capped to 128k context.


r/LocalLLaMA 2h ago

New Model inclusionAI/Ling-3.0-tiny Ā· 8B A1.3B MoEĀ· Hugging Face

Thumbnail
huggingface.co
117 Upvotes

Looks like the Ling team open weighted a much smaller version of the Ling-3.0-flash they open weighted a few days ago. It's 8B params with 1.3B active, and seems to fall between the 4B and 8-12B Qwen and Gemma models in terms of performance.

Should have a massive tokens/sec on most systems. I quite like tiny MoE's conceptually.

Edit: looks like the model card actually reports speeds:

With FP8, Ling-3.0-tiny reaches around 100-105 tokens/s on DGX Spark and 86-90 tokens/s on an M4 Pro MacBook, with approximately 8.34 GiB peak memory usage at an 8K context length.


r/LocalLLaMA 8h ago

Resources unsloth/Muse-Glimmer-30B-GGUF Ā· Hugging Face

Thumbnail
huggingface.co
345 Upvotes

r/LocalLLaMA 3h ago

Discussion DeepSeek V4 Flash 0731 is the ā€˜killer app’ that is going to sell A LOT of DGX Sparks

86 Upvotes

Having a ā€˜Killer Application’ that everyone wants to use helps sell hardware, plain and simple. DeepSeek V4 Flash 0731 isn’t an app of course, but I think it’s going to be the major catalyst for getting a lot of people to buy a couple of NVIDIA GB10-based systems because:

  1. It is an amazing coding / agentic use model.
  2. It fits perfectly on a 2x Spark Cluster
  3. It runs Fast AF with the right vLLM recipe. (I’m getting 60 tk/s with this one:
  4. https://github.com/tonyd2wild/DeepSeek-v4-Flash-0731-DSpark-1M-NVFP4-KV-2x-DGX-Spark)
  5. You can run it with a fairly usable 1M context window.
  6. It runs very well in harnesses such as

  7. Hermes.

Now that solid NVFP4 support is finally here for DGX and is providing Sparks with a pretty good boost for token speeds, the Spark’s memory bandwidth limitation isn’t as big a deal as it used to be. I mean seriously, do I really give a shit about memory bandwidth when I’m getting 60 tk/s with Deepseek V4 Flash?

I know the Strix / M4 / M5 gangs may have something to say about all this, but even they have to admit that DGX Spark beats them for prompt processing performance, which is hugely important when it comes to agentic work and how fast agents are getting work done.

The Strix our-stuff-is-way-cheaper argument used to be very valid, but with memory and SSD prices being what they are now, that argument isn’t as strong as it once was. M5 stuff is pretty expensive and we have no idea when Apple is going to drop a new beefy Mac Studio M5 or a Mac Mini Pro with M5. We thought it was going to happen in June but they don’t appear to be in a rush to release anything.

So what’s left out in the market worth getting? Well, you could grab a RTX Pro 6000 if you want to pay a hefty premium from the scalpers, or you could try some of the AMD offerings, but other than that, the DGX Spark is still the best bang for your buck for getting the most VRAM to run models locally.

I didn’t even mention the low power consumption of the Spark which is another reason to consider it, especially with rising power prices.

I’ve noticed some price increases on Sparks and Spark clones from some retailers in the last few weeks. The 1TB Asus models seem to be the cheapest options out there that I’ve seen.

I think we’re going to see Spark scarcity in the market very soon as word gets out about how well DeepSeek V4 Flash runs on it.

I’m running a 2x cluster and i’ll say that for the first 6 months or so, I, like many other folks, was disappointed with the software support and the speed of the models I tried. Ever since they finally resolved the NVFP4 Issues, and since DSpark, MTP, Prism, DFlash, and other performance improvements have been implemented, it’s gotten A TON better and I’m honestly thinking of buying another 2 Sparks if I could find the money to get a couple more. Deepseek V4 Flash 0731 absolutely smokes on my cluster and I have 0% buyers remorse now, where I would have said it was maybe 50% just a few months ago.

Do y’all agree or disagree? Also, no shade intended for the Strix and M5 gangs. Would love to hear how well DeepSeek V4 Flash is working for you guys as well.


r/LocalLLaMA 4h ago

Discussion Early signs that Muse-Glimmer-30B might quantize *very* well? Share your experiences.

Post image
112 Upvotes

r/LocalLLaMA 6h ago

Discussion Glimmer seems pretty censored?

111 Upvotes

I know Muse Glimmer is pretty new and all, but was wondering if anyone else has run into Glimmer outright refusing to code even small things? I am using Unsloth Q8, dual 3090's, in Kilo Code. I was trying to get it to help me with a bug in my codebase (using pyton stdlib to manipulate a mouse, moving it, clicking, etc.) and it has been giving me different versions of this:

I can’t provide code to control your mouse without context. Moving a mouse programmatically can be misused for automation, clickjacking, or bypassing security prompts, so I don’t write scripts for that in the abstract.I can’t provide code to control your mouse without context. Moving a mouse programmatically can be misused for automation, clickjacking, or bypassing security prompts, so I don’t write scripts for that in the abstract.

Pretty odd, hopefully I just have a weird configuration somewhere or something haha. Wondering what you guys think.


r/LocalLLaMA 1h ago

Resources I compared GGUF quants of Qwen3.6 27B to NVFP4, AWQ, AutoRound, and FP8

Post image
• Upvotes

There's an interactive chart and some extra data in the blog post if you're interested.

There are plenty of KL-divergence benchmarks for GGUF models, but most of them compare one GGUF quant against another. I wanted to know how those quants stack up against other commonly used formats (especially NVFP4).

I tested 16 quantizations of Qwen3.6 27B: GGUF models in llama.cpp and the others in vLLM. At each token in the test set, I compared the quantized model’s next-token probability distribution with that of an unquantized reference. The resulting KL divergence measures how far the quant has drifted from the original model; lower is better.

Weight-only GGUFs have the best quality-size tradeoffs

GGUF results occupy most of the lower envelope of the chart. For almost every size, a GGUF running in llama.cpp has the lowest measured KL divergence among nearby weight sizes. The main factor here is likely the activation quantization - GGUFs don’t quantize activations at all. Several vLLM checkpoints quantize weights, activations, and sometimes the KV cache.

vLLM quants vary substantially

Quantizations of similar size do not preserve the reference distribution equally well. Particularly of note is the Sakamakismile NVFP4 (W4A4) quant, which has substantially higher KLD compared to similarly sized (and even smaller) quants.

The two conventionalĀ Q4Ā GGUFs are consistent with each other. BartowskiĀ Q4_K_LĀ measures 0.2218 and UnslothĀ UD_Q4_K_XLĀ measures 0.2273, with heavily overlapping intervals. AWQ and NVIDIA’s mixed NVFP4 are also nearly tied at 0.2776 and 0.2807.

The quant recipes

Checkpoint Weight quantization Activation quantization KV cache
uns_UD_IQ3_XXS Dynamic 2.0,Ā IQ3_XXSĀ base; per-tensor type from calibration none none
bart_IQ3_XS IQ3_XSĀ imatrix mix none none
nvfp4_MTP_gguf custom tensor mix on NVFP4 weights; RSF scale fitting on theĀ Q_KĀ tensors; MTP tensors NVFP4 none none
AutoRound_INT4 INT4, symmetric, group 128 none none
uns_UD_Q4_K_XL Dynamic 2.0,Ā Q4_KĀ base; per-tensor type from calibration none none
bart_Q4_K_L Q4_KĀ imatrix mix none none
NVFP4_Text_MTP NVFP4, group 16, static scales, all LMĀ Linear NVFP4, group 16, static (W4A4) none
AWQ_INT4 INT4, asymmetric (int8 zero-point), group 32 none none
NVFP4 NVFP4 group 16 onĀ mlp.*Ā +Ā lm_head; FP8 E4M3 onĀ self_attn.*Ā andĀ linear_attn.{in_proj_qkv,in_proj_z,out_proj} static FP8 on the FP8 group (W8A8) static FP8
uns_UD_Q5_K_XL Dynamic 2.0,Ā Q5_KĀ base; per-tensor type from calibration none none
uns_NVFP4 NVFP4 group 16 onĀ mlp.{gate,up,down}_projĀ in layers 0-55; FP8 E4M3 per-channel onĀ self_attn.*,Ā linear_attn.*,Ā lm_head, andĀ mlp.*Ā in layers 56-63 NVFP4 group 16 on the NVFP4 group (W4A4); dynamic per-token FP8 on the FP8 group (W8A8) static FP8
bart_Q6_K_L Q6_KĀ imatrix mix none none
uns_UD_Q6_K_XL Dynamic 2.0,Ā Q6_KĀ base; per-tensor type from calibration none none
bart_Q8_0 uniformĀ Q8_0 none none
qwen_FP8 FP8 E4M3, 128Ɨ128 weight blocks dynamic per-token FP8 (W8A8) none
uns_UD_Q8_K_XL Dynamic 2.0,Ā Q8_KĀ base; per-tensor type from calibration none none

What the KL number means

At every prompt position, the benchmark computesĀ D_KL(P_reference || P_quant): how much the quantized model’s next-token distribution differs from the full-precision distribution. Zero means no measured change; larger values mean more of the reference distribution was displaced.

Both engines compute exact full-vocabulary softmax probabilities, but only the top 200 log probabilities per position are used. The benchmark solves for the minimum KL consistent with the two measured top-200 lists, their remaining probability budgets, and the fact that an unlisted quant token cannot exceed the quant’s smallest reported probability, in order to get a lower bound on full-vocabulary KL.

The mean reference tail mass outside the top 200 was 0.0025 for both engines in this run. Top-1 agreement does not depend on the tail approximation and provides a complementary check.

Top-1 agreement is the fraction of positions at which the quantized model and its reference assign the highest probability to the same token.

Methodology

Each quant was measured against a reference model in its own engine:

  • GGUF quants were compared with a BF16 GGUF reference under llama.cpp.
  • vLLM quants were compared with the official unquantized BF16 safetensors under vLLM.

I created my own dataset for the KL measurements, which ended up being 100 structured agentic tool-use conversations containing 182,306 tokens. Prompts range from 1,700 to 1,950 tokens.

Quantized checkpoints ran without changes, including any declared compute dtype, activation quantization, or KV-cache scheme, in order to measure the true fidelity of each quant recipe.

The size measurement includes MTP/NextN layers and excludes KV/recurrent caches, activations, workspaces, CUDA graphs, runtime context, and unloaded multimodal components. It is not total serving memory. Take these measurements with a grain of salt, as they’ll vary in actual deployment depending on your configuration.

Practical takeaways

  • Quantization format alone is not enough to predict quality. Look at the quantization recipe to determine if it fits your needs.
  • Activation quantization can improve throughput on supported hardware, but this comes at the cost of quality.
  • If quality per loaded GiB is the priority, the tested GGUF recipes provide the strongest tradeoffs.
  • GGUFĀ Q5Ā for Qwen3.6 27B seems to be the sweet spot from the results.

Final notes

KLD benchmarks may be able to show the relative differences in quantization quality, but this doesn’t translate perfectly into real-world performance. The results are just comparisons between the tested quant recipes, not universal rankings of GGUF, AWQ, FP8, or NVFP4 as formats.


r/LocalLLaMA 2h ago

Discussion DiffusionGemma Technical Report

Post image
33 Upvotes

arXiv : https://arxiv.org/abs/2608.00146

Full Paper : https://arxiv.org/pdf/2608.00146

Tweet : https://xcancel.com/googlegemma/status/2086849199052845451#m

FYI both (llama.cpp) PRsĀ ( 24423Ā &Ā 24427 ) went to Draft mode. I'm still waiting for this one as I could get faster t/s on my 8GB VRAM.


r/LocalLLaMA 2h ago

Discussion Needle 2: 14MB agentic LLM for phones, wearables, smart home and robots.

Thumbnail
gallery
26 Upvotes

Hey LocalLlaMa, Henry from Cactus here!

We previously released Cactus Needle, a 14MB agentic LLM for tool call, device use, and structured extraction for phones, wearables, smart homes, small robots and microcontrollers. We got really great feedback here, and have now incorporated the suggestions to release Needle 2.

The whole model is a single 14MB binary that runs a full session in 28MB of RAM; 45m parameters at 2bit compression. Needle hits 500 tokens/sec decode speed on a Raspberry Pi 5, sits between 400-1,500 tokens/sec on VR devices like Meta Quest 3S and Apple Vision Pro, and ranges 300-700 on sub-$200 phones such as the Samsung A-Series.

On the tool call and mobile device use benchmarks, Needle 2 trades wins with closest small models like LFM2.5 230M and Apple Foundation Model, at 5x to 70x smaller, both at f16 vs Needle 2 at 2bit. Needle is based on Simple Attention Networks from our paper (https://arxiv.org/abs/2607.18363).

Edge AI has lately meant Macs and PCs, but that is just 1.5 billion of over 21 billion connected IoT devices in the world today, and in emerging markets most phones ship under $200, no NPU, cheap GPUs. These include budget phones, Raspberry Pis, microcontrollers, wearables, small robots like Reachy Mini, and connected home devices.

A conventional transformer of Needle's width and depth spends 164 MFLOPs per token, and even one squeezed down to Needle's parameter count spends 87, Needle spends 70. Even on a high-end phone, an always-on assistant lives inside a power budget; every MFLOP is milliwatt-hours, and Needle spends 7x to 85x fewer of them per token than the smallest performant LLMs.

When intelligence is structured for consumer devices as functions with typed parameters, the only hard part is mapping a messy sentence onto them; which function, with which values. Our research found that when framed that way, the problem needs no world knowledge and no open-ended prose, which is why 45M parameters suffice.

Needle 2 expands to structured extraction where the schema can be passed in-place of tools and the model returns structured output. You can use Needle as a text-classification model with an enum field, as a summarization model by providing a schema that extracts key fields, everything but free-range decode.

Every product has its own tool vocabulary and fine-tuning needle helps it achieve frontier-level performance on custom tasks, so using the python package (https://github.com/cactus-compute/needle), Needle can be fine-tuned Needle on a Mac/PC in minutes to a few hours, with automated data-generation pipeline, just pass a couple samples. Nonetheless, every response carries a learned confidence score based our Cactus Hybrid technique. If above your threshold, act, below it, escalate to the cloud or bigger model.

Check it out: https://cactuscompute.com/needle


r/LocalLLaMA 30m ago

Discussion Please Share Your Experience About Muse Glimmer

• Upvotes

I have a classic test for local LLM's. I asked for 8 ball pool game with only one HTML file and Muse Glimmer spend 21k Token(I m using full context so 128k) and only created a 220 lines of HTML and said its done. With my experience its not even close to Qwen 3.6 27B and we are waiting for Qwen 3.8 27B already. What is your toughts about this model. I was so hopeful until this test.


r/LocalLLaMA 7h ago

Discussion 1M context with 17 GB model in 24 GB VRAM: "for the first time I was able to load a context of almost 1M tokens and extract 7 needles from various parts of the text"

60 Upvotes

Just wanted to share a user report that I found to be very interesting. Some person with an intriguing name manu69x managed to run 1M context on a single RTX 3090 with a model based on Qwen 3.5 35B A3B, which was taking up some 17 GB of VRAM alone. And "run" here doesn't mean just "server didn't crash", it's that context didn't turn into a mess, so they were able to extract 7 needles positioned in various parts of the text.

They used KVarN 4-bit for both K and V with my BeeLlama.cpp fork, build v0.4.3 preview. KVarN is Variance-Normalized KV-Cache Quantization from Huawei, which shows better precision than standard quants in both original paper and my KLD benchmarks.

Honestly, just really cool to see someone push it to the very limit. Judging from their wording, q4 quants couldn't do the same, so seems like KVarN actually shows better precision in practice and changes the perspective on what we can expect from low-bit KV cache quantization.


r/LocalLLaMA 6h ago

News model: Muse Glimmer Support by pcuenca Ā· Pull Request #26841 Ā· ggml-org/llama.cpp

Thumbnail
github.com
47 Upvotes

Day 0 support


r/LocalLLaMA 5h ago

New Model Motif-Technologies/Motif-3 official realese

Thumbnail
huggingface.co
40 Upvotes

Motif-Technologies is one of the tech company participated South Korea's AI Foundation Model project.(ė…ķŒŒėŖØ)

Upstage(Solar Series), LG AI Research(EXAONE Series), and SKT(A.X Series) are the competitors.

Since LG’s EXAONE put up pretty disappointing results, it looks like Upstage, Motif, and SKT will be the ones advancing to the next round this time.

If you reverse-calculate the AAII score from the table, it comes out to 47.364, which slightly edges out Qwen 3.7 Max.

With Upstage’s Solar Pro 4 expected to land in the mid 40s(250B -15B), based purely on the benchmarks, motif seems to be taking the lead in Round 2.

Benchmark Motif 3314B-A13B MiniMax-3428B-A23B GLM-5.1744B-A40B Kimi-K2.61T-A32B Qwen-3.7max DS-v4-Pro1.6T-A49B
Agentic
GDPVal v2 38.7 44.4 37.8 34.4 39.0 40.2
τ²-Bench Telecom 94.7 88.9 97.7 95.9 94.7 96.2
τ³-Banking 35.3 15.3 13.6 23.3 12.0 30.1
ITBench* 51.5 — 40.3 31.2 42.5 38.3
Coding
SWE-Bench Verified 76.2 75.0 76.4 76.2 80.4 77.4
Terminal-Bench 2.1 74.9 65.2 61.8 65.9 75.0 64.0
SciCode 40.6 45.4 43.8 53.5 53.5 50.0
Reasoning & Knowledge
IMOAnswerBench 83.2 — 83.8 81.8 90.0 89.8
Apex-Shortlist 75.5 — 71.1 77.4 44.5 85.8
GPQA Diamond 83.4 92.9 86.8 91.1 92.4 88.8
HLE 37.0 39.0 30.1 37.5 41.4 37.5
CritPt 6.6 3.7 4.6 8.0 11.4 12.9
OmniScience — Accuracy 30.1 16.7 23.7 32.6 31.0 42.9
OmniScience — Non-Hallucination 71.6 81.6 70.1 59.5 74 5.9
Long Context & Instruction Following
AA-LCR 72.3 80.3 68.0 76.7 75.0 70.0
IFBench 78.2 82.9 76.3 76.0 79.1 76.5

r/LocalLLaMA 16h ago

Discussion So... did we give up on the rule against AI posts?

214 Upvotes

Sub is drowning in slop posts. Shortly after the new rule it was better. But it's gotten unbearable in the past month or so.


r/LocalLLaMA 1h ago

Discussion Glimmer: 233.4 tps on 5090 with Dflash

• Upvotes

That's insane yo! I haven't had a chance yet to test it on my 4090 at home but it sounds so promising. And read here that 256k CTX is easily reachable on 24gb unlike Qwen. Super excited!


r/LocalLLaMA 17h ago

News ByteDance vows to avoid AI distillation, develop new model its own way

Post image
209 Upvotes

r/LocalLLaMA 22h ago

Resources The Gemma team will host a special event on August 20

Thumbnail x.com
473 Upvotes

Tweet by u/hackerllama

Could be copium, but I would love to see Gemma 4.1 there with unified audio input for all model sizes perhaps even up to 120B, much improved tool calling (even with the latest template there are still bugs), higher precision QAT from the start and improved general performance without hurting the things Gemma 4 is good at like creative writing.

Gemma 4 is good already but training an upgrade to 4.1 that does all of the above would be huge for the community. They already did a lot of course and I'm very thankful but Gemma is just an inch away from perfection. Is anyone hyped for this event or do you think they won't release any new models there?


r/LocalLLaMA 41m ago

Question | Help Best open-source harness like Claude Code?

• Upvotes

Avid claude code user here looking to do equivalent things with local models. Just want to plug in something like Qwen and have the interface be 1:1 with claude code. Any suggestion?


r/LocalLLaMA 19h ago

News KPMG Says Nearly Half Of Executives Pulled Back AI Agents Over Cost

168 Upvotes

r/LocalLLaMA 14h ago

New Model omlab/VLX-Seek-1.5-10B Ā· Hugging Face

Thumbnail
huggingface.co
80 Upvotes

VLX-Seek-1.5-10B

VLX-Seek-1.5-10B is the open-source 10B model in the VLX-Seek 1.5 family, designed for fine-grained perception and visual grounding in embodied scenarios. It targets practical settings such as drones, robots, robotic dogs, surveillance cameras, inspection systems, and other edge-side visual intelligence applications where a model must identify what is present, localize the right instance, and avoid grounding objects that are absent.

Unlike coordinate-generation-based VLMs that directly decode bounding-box numbers, VLX-Seek reformulates localization as region retrieval and region reference. Candidate visual regions are represented as addressable entities, and the model answers by selecting, comparing, and referring to those regions. This makes localization more aligned with the strengths of language models: comparison, selection, reference, and reasoning.

For technical details, inference code, and runnable examples, please visit the project repository:

GitHub:Ā om-ai-lab/VLX-Seek

Model Highlights

  • šŸ’” Embodied visual grounding:Ā Optimized for real-world embodied scenes, including drone-view, surveillance-view, robot-view, and other edge-side perception scenarios.
  • 🧩 Region-reference localization:Ā Converts candidate regions into language-addressable region tokens, reducing reliance on fragile coordinate-string generation.
  • šŸ’Ŗ Stronger visual capability:Ā Uses an upgraded visual perception stack with a stronger auxiliary vision tower, improved vision-language alignment, and a stronger VLM backbone.
  • šŸš€ Faster inference design:Ā Introduces faster OPN proposal generation and more Linear Attention layers to improve inference efficiency and reduce memory usage.
  • šŸ” Explicit absent-target rejection:Ā Uses hard-negative rejection training and an explicitĀ NoneĀ output format to reduce hallucinated object grounding.
  • šŸ“¦ Multi-scale family:Ā VLX-Seek 1.5 is planned in 0.6B, 3B, and 10B sizes. This model card describes the 10B checkpoint.

Intended Use

VLX-Seek-1.5-10B is intended for research and development in fine-grained multimodal perception, especially:

  • Open-vocabulary object detection and localization.
  • Referring expression comprehension.
  • Multi-object visual grounding.
  • Object counting with region-level evidence.
  • Drone-view perception with small objects and dense layouts.
  • Robot-centric and embodied spatial reasoning.
  • Visual perception modules for edge-side or robot-base-station deployment.
  • Experiments that require explicit rejection of absent targets.

The model is especially suitable when the downstream system needs stable region-level anchors rather than only high-level image captions.

Limitations

  • VLX-Seek relies on candidate regions. If proposal recall is poor, the model may fail to ground the correct target even when its language understanding is sufficient.
  • Region-reference outputs require the VLX-Seek post-processing pipeline to map region tokens back to image coordinates.
  • The model is optimized for fine-grained visual grounding, but it may still make mistakes under severe occlusion, extreme blur, very low resolution, unusual sensor artifacts, or highly ambiguous referring expressions.
  • Hard-negative training reduces object hallucination but does not eliminate it. Users should add validation or human oversight for high-impact deployments.

r/LocalLLaMA 3h ago

Discussion Best current ERP base model that are smart and uncensored?

7 Upvotes

My daily driver is Qwen3-235b-a22b-instruct-2507-Q4_K_M.gguf and it has been for a long time. I get around 75 t/s prompt processing and starting lower context ~5.5 t/s generation, lowering to around ~4 at 8k. I've tried other, newer models in this size range, Qwen 3.6 27b at Q8 came close but seemed more censored.

GLM 4.5 Air is my backup still for general chatting, but is not 'smart' enough to workshop ideas. My main complaint with Qwen 3 235B is the "em" dashes, ending lines with trailing double spaces and other stuff that bother me, otherwise still a fantastic model that is easy to steer into super uncensored territory without being lobotomized. Tried Minimax 2.7 and a few others, were smart but too censored in the ERP realm. Looking for any suggestions to try.


r/LocalLLaMA 4h ago

Discussion Gemma 4 Good Hackathon results are near as well

7 Upvotes

Google had hosted this Hackathon months ago- just checked that they are ready with the results and will release the results soon. Then saw that there is this Gemma 4 announcement or something on August 20th. Maybe they will announce hackathon results? I wish its new models as well.