Remix.run Logo
Nvidia Nemotron 3.5 Lightning and NeMo Switchyard(blogs.nvidia.com)
125 points by droidjj 3 hours ago | 61 comments
jmward01 2 hours ago | parent | next [-]

One major consequence of the ramapocalypse, I think, is an even higher focus on small efficient models. I personally believe that the multi-trillion parameter models are fundamentally missing things and the push to smaller, more efficient will drive evolutionary structural changes that will lead to future gains

XCSme 4 minutes ago | parent | next [-]

This is just temporary though, right?

With the benefit of LLMs already being proven, in a couple of years we will have vastly better hardware for inference I guess.

I feel like now hardware is stagnating a bit, because the software side has moved too fast for the hardware to catch up. Once we settle on sone good, optimal software architecture for the models, dedicated hardware will easily increase throughout by 10x or 100x, for a fraction of the most.

LLMs seems quite simple, maybe we'll be able to print at home our own chips with the models.

whimsicalism a few seconds ago | parent | prev | next [-]

I think the path of least resistance will end up being the cheapest and that is scaling up the parameters a ridiculous amount until you get highly capable models that you can develop/distill/design the RAM efficient models. Going straight for low param is foolish and just a cope by smaller labs because they don't have the compute/talent to train the large ones.

Many on HN are in deep denial about this imo.

cogman10 19 minutes ago | parent | prev | next [-]

I'd assume the closed weight models are all working on shrinking their parameter counts anyways. They too benefit from smaller models. It'd be foolish for these SOTA labs to not be working at reducing parameter counts.

jrflo 11 minutes ago | parent | prev | next [-]

Let's not forget the Bitter Lesson. Small models sound really nice but at some point you're just fighting the laws of information theory. Efficiency gains on the small model side are nice, but efficiency gains + giant model tends to be even better...

cootsnuck 30 minutes ago | parent | prev | next [-]

I would say even without rampocalypse there would still be the strong incentive to innovate at the edge and under more extreme constraints. The incentives are just even stronger now.

I'm looking forward to seeing what types of new things people create over the coming years once there is less obsession with massive unwieldy LLMs. I think the incentives are just too strong to ignore.

schainks an hour ago | parent | prev | next [-]

I am literally betting my company on this being true.

itsmeduncan 35 minutes ago | parent | next [-]

Me too. I think there are a few waves we can ride here. Let's collaborate?

jmward01 an hour ago | parent | prev | next [-]

What company? I am 100% focused on this as a concept in my own internal research.

oblio an hour ago | parent | prev [-]

It's a bad bet, historically.

I'm having an extremely hard time thinking of companies that have prospered due to software optimization. Most of them were swept away by hardware advances, instead.

jmward01 an hour ago | parent | next [-]

The 1980's US car industry comes to mind. Nearly wiped out because they refused to make efficient vehicles. SpaceX is arguably showing how a rethink towards efficient can take over an entire industry. I am sure there are strong examples in software as well but they aren't coming to mind.

I think when successful, optimization really just means 'finally built right' and people forget the ridiculously inefficient ways before.

somethingweird an hour ago | parent | prev | next [-]

Many of the current internet titans started by making things more efficient and accessible. Google for search, Facebook for connecting to people online, Microsoft for working with PCs at a reasonable price, Amazon for buying online as well as AWS. There are examples in other industries as well, Toyota is famous for it for example. There are probably counter examples but efficiency gains can be a huge deciding factor making companies successful.

bravura an hour ago | parent [-]

You just listed a bunch of 0 to 1 companies, not 1 to 10 companies.

They weren’t quantitatively better than previous companies. They were qualitatively better.

cootsnuck 33 minutes ago | parent [-]

I think finding significant efficiency gains with LLMs and the like may lead to qualitatively better products. Looking at people's experiences to DSV4F makes me believe that even more than before too.

I don't think people are realizing that speed can allow for categorically different user experiences that are more than just "worse than frontier capabilities but faster".

cootsnuck 36 minutes ago | parent | prev | next [-]

Betting on innovation continuing to figure out ways to squeeze more out of less has historically been the right move. Look at Apple.

And I'd argue "hardware advances" are more proof of optimization.

hgoel an hour ago | parent | prev | next [-]

The headroom for hardware advances is a lot lower now than it has been for most of the industry's existence, when Moore's law held strong. Now we find ourselves limited by cost, physics, fab capacity, and complexity of spinning up more fab capacity.

polymer8563 an hour ago | parent | prev [-]

IBM wants a word

oblio 7 minutes ago | parent [-]

On what? OS/2 didn't fail due to lacking software optimization.

NBJack an hour ago | parent | prev [-]

I honestly hope to see this across all applications, games, services, operating systems, etc. We've been in a period of wasteful RAM usage for over a decade. Constraints, whatever their origin, can be a good thing.

pjmlp an hour ago | parent | next [-]

Same here, back to when algorithms and data structures mattered.

oblio an hour ago | parent | prev [-]

If China makes half decent RAM I would bet more on things like 128GM of RAM being the default on low spec laptops 10 years from now.

While I do love optimized software, the hardware side, especially for PCs, has been stagnating for way too long. At least now we have a valid use case for doubling available RAM every 2-3 years again.

I had a reasonably beefy Lenovo consumer line laptop that I bought in 2011, 8GBs of RAM. Its screen hinge broke and I couldn't repair it but I'm fairly sure it was otherwise still usable in 2023-24, once the HDD was replaced with an SSD. I think even now entry level laptops are sold with 8GB of RAM.

By comparison a PC from 2000 was utterly unusable in 2012-13.

KaiMagnus 23 minutes ago | parent [-]

I count on a 128GB baseline in 10 years. Beyond the current atmosphere of despair, I really want to see what Apple especially is cooking. Local AI is right up their alley and the current scarcity is unacceptable for them in so many ways.

I got the feeling laptops gonna feel very different in 2036.

thehamkercat 3 hours ago | parent | prev | next [-]

> NeMo Switchyard, an open source library for smart routing

> When deployed, NeMo Switchyard can intelligently direct each request to the most capable and suitable model for the job

How do routers like this handle prompt caching when you send the second request?

Sticky models per session? but then the second message of that session won't be sent to a suitable model, and will only be sent to the same model as previous one.

eli 2 hours ago | parent | next [-]

I've seen ones that are configurable to pick a trade off point between lower cost (cache stickiness) and routing performance (best model for that turn).

But yeah I'm skeptical all this overhead is worth it.

quinncom an hour ago | parent | prev | next [-]

Caching should be possible as long as all the models use the same shared cache. The models don't even need to be running on the same server if the shared cache is distributed.

I have a feeling people reading this are thinking that a model router would be used to route between different providers. And in that case, a shared cache would be impossible, although some caching would still be effective. I think, ideally, a router like this is in front of a set of models hosted in one place.

IanCal 33 minutes ago | parent | next [-]

How do caches work across models? I would have thought that was very model specific - if not I’ve really misunderstood what’s getting cached.

armanckeser 16 minutes ago | parent [-]

I am not sure the author of the comment you are replying to understands that LLM systems have prompt caches

amluto 33 minutes ago | parent | prev [-]

Huh?

Prompt caching isn’t about caching the literal text of the prompt. It’s about caching the result of running prefill on the prompt (or, equivalently, the result of generating the prompt one token at a time by autoregressive inference, or some combination of the above in the case of speculative decoding). This is often called the “KV” cache, and it is very model-specific.

embedding-shape 2 hours ago | parent | prev [-]

The repo is probably a better entrypoint to it, bit more concise description than the press releases: https://github.com/NVIDIA-NeMo/Switchyard (Notably: "Experimental software. Not for production use."). Unclear if they actually want you to deploy it or not, press release says yes, README says no, do with that what you will.

Doesn't seem to mention "cache" in the README nor the docs, but the code has mentions of it (https://github.com/search?q=repo%3ANVIDIA-NeMo%2FSwitchyard+...), I'm not sure what their thinking is there. "Good luck" essentially? Seems to be per-provider at best, but weird position for a routing library to take.

thehamkercat 2 hours ago | parent [-]

I personally think it's snake-oil marketing with all these smart-model-routing products/projects

prompt-cache won't work with these

try-working 2 hours ago | parent [-]

To keep it simple, forget about routers and imagine you're in Cursor using GPT for a while, reaching a cache of says 200k.

You decide to switch to DeepSeek in the same session via the model picker, and continue as usual. What happens is that the cache for DeepSeek is created with the 200k + the incremental message. After this, cache can be kept warm for both models; two instances of the cache exists, one for GPT and one for DS.

You switch back to GPT. The whole session is sent to the model with the 200k original from GPT and the incremental messages you sent to DS. The 200k is read from cache and the incrementals are new, and then added to the cache.

Let's say every second message you switch between GPT and DS; cache was 200k and each incremental message is 1k. If you kept going with only GPT, cache hit rate would be 200k/(200k+1k) = 99.5%. When you switch between two models with warm cache, hit rate instead becomes 200k/(200k+2k) = 99%.

Model routers work the same way. Keep the cache warm, replicate it in two places. For this reason, when you set up your model pool for routing, you want to keep the model pool small and differentiated.

First principles of model routing: https://try.works/first-principles-of-model-routing

role-model router and protocol: https://github.com/try-works/role-model

note: edited to keep the answer to the below message clearer

hedgehog 2 hours ago | parent | next [-]

To elaborate, because I don't think some of the people reading this understand the reason, typically a lot or most of the cost in "agentic" API usage is cached read + generation. Cached read costs scale with turn count, which multi-model switching doesn't increase, and of course generation gets cheaper if you do some of it with a cheaper model. When you switch models the "catching up" batch of messages is just a single prefill and then that goes into cache. You don't even need to have the same chat history across models so long as the view from each model's perspective looks like a series of appends.

The main problem with model routing in my experience is that to work well the router needs to be pretty strong, maybe even moreso than any of the actual models in service. There are probably clever solutions to this but I haven't seen any that look better than just using sub-agents.

richwater 2 hours ago | parent [-]

> which multi-model switching doesn't increase

Given model A with cache C(a) and model B with C(b)

Isn't this not true because the moment you switch models from A to B, you need to provide C(b) the latest conversation diff since C(b) last updated, say many turns ago?

WASDx an hour ago | parent [-]

If you take 10 turns with a model A, it has to read the cache 10 times and write a lot of tokens (the expensive part). Switching to model B is just prefilling the diff + your new message, which is still just one turn. So total number of turns does not increase for a long session even with many switches.

I didn't understand this before reading the sibling comments so I'm not sure I got it fully right but I think the total cost becomes like this:

* Input tokens: Pay for both models * Output tokens: Pay for the model that generates * Cached tokens: Pay per turn, so in total a weighted average over both models?

Since output tokens are the most expensive, I can see how this is an overall win for many use cases as benchmarks also show. The hard part is routing correctly.

thehamkercat 2 hours ago | parent | prev [-]

Can you explain how does it work? like how is the previous K/V cache used when you switch to another model?

Source?

hedgehog 2 hours ago | parent | next [-]

See sibling answer but essentially the effectiveness of cache is not diminished by having a separate one per model (relative to the win of doing more turns and generation with a cheaper model).

try-working 2 hours ago | parent | prev [-]

edit: updated the answer above to be more qualitative instead

mark_l_watson 7 minutes ago | parent | prev | next [-]

I love the wave of new small model releases. Pleasantly surprising that an NVIDIA model runs so well on Apple Silicon using MLX! I was using nemotron-3.5-lightning:30b-mlx with OpenCode on my old (cheap) Mac this morning and no bad experiences except for running slowly.

average_bloke 2 hours ago | parent | prev | next [-]

I would like to propose something:

- problem: massive deluge of information because of AI

- solution: human beings should adopt a minimalist style of communicating in writing.

- e.g. this entire website page can be ten bullet points.

fooker 41 minutes ago | parent | next [-]

k

stavros an hour ago | parent | prev | next [-]

While I agree with the spirit, I don't think the solution to bad prose is slightly less bad prose. We can write good prose instead.

encrux 2 hours ago | parent | prev [-]

In my opinion: the only way forward is zero-knowledge-proof authenticated social media.

We can’t have legitimate debate if we have to assume a few bad actors are cloning their voice by the thousands, poisoning debate.

If we can pin one account to a real person, we won’t get rid of LLM-content and misinformation, but at least we can hold them accountable.

ttoinou 2 hours ago | parent | next [-]

Is the network based on trust and peer to peer confirmation of private keys from who you know in real life that you validated isn’t a robot ?

Or do you have something else in mind ?

kubelsmieci 2 hours ago | parent | prev [-]

> We can’t have legitimate debate

I'm not sure people really want that

docheinestages an hour ago | parent | prev | next [-]

They conveniently decided not to include the Qwen range of models in the Artificial Analysis graph, except the out-of-league Max variant. At least be brave and honest.

jadbox 35 minutes ago | parent | prev | next [-]

Nemotron 3.5 Lightning runs on how little GPU vram? Can q4 run on 16gb?

sleepyeldrazi 15 minutes ago | parent [-]

Not by the looks of it, but it got me thinking, currently in the middle of Level1Techs coverage on the model and switchyard and he mentions "how easy it is to customize it". Fully admitting that I haven't yet read the docs, my issue with that is "we can train LORAs for 35B as well, why use this (according to benchmarks) worse model for customization instead of a slightly bigger better one?"

Assuming I eat my words after going through the docs and this is actually a more efficient model / loras adapt better, I don't see as much value in it as is, as a REAP of it (remove least-important experts, domain-locked tests show ~98% retained accuracy) to something like 20B-A3B (rouhgly matching gpt oss, which while a good model, is outdated knowledge-wise and not as good with tool in my xp).

Having a 20B-A3B model at q4 that has a lora to be your local orchestrator (delegating coding to server/cloud models) and ci/cd runner does start sounding like an appealing proposition to me, as that would fit in 16gb vram easily (fitting many consumer gpus and 24gb macs).

WalterGR 2 hours ago | parent | prev | next [-]

24 comments so far about Nemotron on this earlier submission: https://news.ycombinator.com/item?id=49257947

XCSme 2 hours ago | parent | prev [-]

The new Meta 30B models seems A LOT better:

https://aibenchy.com/compare/meta-muse-glimmer-30b-xhigh/nvi...

thehamkercat 2 hours ago | parent | next [-]

Muse Glimmer 30B seems to be on par with Qwen 3.6 27B (4 months old)

but

Qwen 3.8 27B is dropping this week...

XCSme 2 hours ago | parent [-]

Yes, I was surprised to see doing it as well as Qwen 3.7 27b.

Even though that model is already "old", qwen was way ahead everyone else in that size category before this Meta model.

Also, probably for non-Chinese usage, using a non-Chinese model might lead to better results.

eli 2 hours ago | parent | prev | next [-]

The top 4 models on that site are all variants of Gemini Flash? That does not match my experience at all.

XCSme 2 hours ago | parent | next [-]

I should add a F.a.q. for this question.

The suite is across many categories, not only coding, and most of the tasks are low-horizon (or what the opposite of long-horizon is), where the max thinking time is around 10 minutes.

Gemini models are really smart, unfortunately they don't play well with any harness, so hard to use in practice.

But try them out for one-shot tasks, they are really good. Don't use them for coding in a harness, but you can ask them to generate code/planning (still, for coding only other models are indeed recommended).

markasoftware an hour ago | parent | prev [-]

yep, the person you're responding to created the benchmark and is using HN comments as advertisement.

XCSme 12 minutes ago | parent [-]

I did, avertisment is a big word, as I gain nothing from the traffic, I run the website for myself, and some other people find it useful too.

Happy to hear what would make the website more useful.

khimaros an hour ago | parent | prev | next [-]

lightning is sparse, glimmer is dense

XCSme 11 minutes ago | parent [-]

Oh, good to know, I just quickly tested and published the results.

I will add model sizes (total/active params) for each model, good point.

rllearneratwork 32 minutes ago | parent | prev | next [-]

and Glimmer has 10x active params of Lightning. Meaning ~ 10 slower on same HW

XCSme 10 minutes ago | parent [-]

Is that the case?

If the entire model fits in vram, won't the tps be comparable?

Tactical45 2 hours ago | parent | prev [-]

At what cost difference?

XCSme 2 hours ago | parent [-]

I don't think it matters, if it's for local/on-device usage.

The cost is similar vram footprint I guess (?)