induwara.lk
Opinionaiopen-sourceindustry

Nvidia buying Hugging Face: what it does to your free tier

Nvidia is reportedly close to buying Hugging Face for $12.9B. That is ~86x revenue, which tells you it is not buying a business. It is buying the default path. Here is what to do about it.

Induwara Ashinsana5 min read
Nvidia and Hugging Face logos side by side over a dark AI hardware background
Image: TechCrunch

The Nvidia Hugging Face acquisition story broke overnight, and the number is the interesting part. TechCrunch reports, citing The Information, that Nvidia has agreed to buy Hugging Face for $12.9 billion. No signed agreement yet. It can still fall apart.

I have a huggingface_hub import in almost every AI tool on this site. So do most people reading this. That is the actual story here, and it is worth ten minutes of your attention.


💰 The price tag says this isn't a revenue purchase

Hugging Face's own CEO, Clem Delangue, has said the company is close to profitability on roughly $150 million of annual revenue, up from about $100 million two months earlier. Put that next to the reported price:

Figure Value What it implies
Reported price $12.9 billion The headline
Annual revenue ~$150 million Real, growing fast
Revenue multiple ~86x Nobody pays 86x for a hosting business
2023 funding valuation $4.5 billion Nearly 3x markup since
Nvidia's rejected 2025 offer $500M at $7B valuation Turned down late last year

Going from a rejected $7 billion to a reported $12.9 billion in under a year is not a change of heart about price. Something about what the asset is got re-rated.

Key takeaway: At 86x revenue, Nvidia isn't buying a hosting business. It's buying the default place every AI engineer on earth types first when they need weights.


🔍 What Nvidia actually gets for $12.9 billion

Two things, and the reporting is fairly direct about both.

  1. A moat around the chips. Open-source model releases are what keep the entire non-OpenAI world building on CUDA. Own the distribution point and you own where the ecosystem's defaults point.
  2. A way back into cloud. Nvidia scaled back DGX Cloud about a year ago. Hugging Face already rents compute for running models. That is a re-entry, with a built-in audience already logged in.

There's a third thing nobody's saying out loud: Nvidia has enormous volumes of committed-but-unused compute from customer contracts. A model hub with a "Run this" button is a very efficient way to sell that idle capacity.

The strategic logic is sound. That's exactly why I don't think this is a bluff — and why I'd plan as if it closes.


🌐 Why this lands differently if you're building from Sri Lanka

If you're in San Francisco with a corporate card, Hugging Face going commercial is an annoyance. If you're a student at UCSC or a two-person team in Colombo, the free tier is your infrastructure. Concretely, what most of us use for free:

  • Model and dataset downloads — unmetered, no card, no quota anxiety.
  • The free Inference API / router — the only way a lot of side projects get any inference at all.
  • Spaces — free CPU demo hosting, which is genuinely rare.
  • Public datasets — the thing that makes a final-year project possible without a budget.

None of that is guaranteed to change. But an acquirer paying 86x revenue has, by definition, a plan to grow revenue a lot. The historical pattern for free tiers under that kind of pressure is not "they get better."

The bandwidth angle matters too. Pulling a 16GB model over a domestic connection here is already a real cost in time. If mirrors get gated behind an account tier or a region, that stops being an annoyance and starts being a blocker.


🛠️ The portability checklist I'm running this week

I'm not panicking and I'm not migrating anything. I'm reducing single points of failure. In priority order:

  1. Mirror the weights you actually depend on. Not everything — the three or four models a live project would break without.
    pip install -U "huggingface_hub[cli]"
    hf download <org>/<model> --local-dir ./models/<model>
    # older installs use: huggingface-cli download ...
    
  2. Pin exact revisions. revision="<commit-sha>" instead of main in every from_pretrained call. This is good practice regardless of who owns the hub, and it costs you nothing today.
  3. Know your second inference provider. If the free router disappeared tomorrow, what's your fallback and what does it cost? Our AI inference provider comparison lays the options out side by side.
  4. Price out the local option honestly. Running an 8B model on your own machine is often more realistic than people assume. Check what VRAM you'd actually need with the LLM VRAM calculator, then sanity-check the monthly economics with the self-hosting cost calculator.
  5. Separate licence from hosting in your head. An Apache-2.0 or MIT model stays Apache-2.0 or MIT. Ownership of the website it sits on does not retroactively change the licence on weights already published.

That last point is the genuinely reassuring one, and it's why I'm not alarmed.


⚡ What I'd expect to change, and what I wouldn't

Thing My read Confidence
Existing open weights get revoked No. Licences don't work that way. High
Free downloads stay free Probably, for a while. Downloads are the moat. Medium
Free hosted inference stays generous This is where I'd expect pressure first. Low
Deeper CUDA/TensorRT-first defaults Very likely. It's the whole thesis. High
AMD, Apple Silicon, CPU paths get quietly deprioritised Likely, and this is the real risk. Medium

The bias risk is subtler than a paywall. It looks like the "optimised" variant always being the Nvidia one, the benchmarks in the docs always being on Nvidia hardware, the one-click deploy always going to Nvidia compute. Nobody has to block anything for the ecosystem's centre of gravity to shift. If you build on Apple Silicon or a local runtime, that's the trend worth watching.


What this means for you

Nothing in your workflow breaks today. There is no signed deal yet, and even a signed deal takes months to clear regulators.

What changes is that a piece of infrastructure you treated as neutral has a price on it, and the buyer sells hardware. Treat Hugging Face the way you'd treat any vendor you depend on and don't control: pin your versions, mirror what you can't afford to lose, and know your fallback before you need it.

For a solo builder or a small team here, the practical answer stays the same one it's always been. Open weights plus a machine you own is the cheapest independence available in AI right now, and this news makes that slightly more valuable, not less.

#ai#open-source#industry
IA

Induwara Ashinsana

Information Systems student at UCSC and Executive Director at Ryzera Technologies. Writes about software, AI, and what it means for builders in Sri Lanka.

About the author →

Keep reading