← Back to News
News

Nvidia Is Acquiring Hugging Face, the Hub Your Local Models Come From

September 3, 2026

Nvidia has signed a definitive agreement to acquire Hugging Face, the site where nearly every open-weight model and dataset used for local AI is hosted, in a deal the two companies value at about $12.93 billion. The deal is not done: Nvidia's own filing says it expects to close in the first half of 2027, pending regulatory approval. Nothing about how you download models changes today, and both companies say the platform will stay open. But the company that makes the GPUs many of us run models on would now also own the shelf those models sit on, and that is worth thinking through before it closes.

What actually happened

Nvidia and Hugging Face announced on September 3, 2026 that they had signed a definitive merger agreement the day before. Nvidia's announcement post puts the figure precisely: chief executive Jensen Huang wrote, "I'm excited to announce that NVIDIA has agreed to acquire Hugging Face for $12,930,300,000."

Nvidia's filing with the SEC breaks that down as roughly $11.9 billion payable to Hugging Face stockholders, "subject to certain adjustments," plus an equity retention program of up to about $1.0 billion for Hugging Face employees joining Nvidia. The filing says the deal is "expected to close in the first half of 2027, subject to the satisfaction or waiver of customary closing conditions, including receipt of required regulatory approvals." In other words, this is an agreement, not a completed sale, and it is roughly a year from closing if it closes on schedule.

Hugging Face is not a small target. Nvidia's post says more than 18 million developers, researchers and creators use the platform, which hosts over 3 million models, more than 500,000 datasets and over 1 million applications, with more than 200,000 companies using it. Nvidia is also a major contributor of open models and datasets on the platform itself, and it was an investor in Hugging Face's 2023 funding round that valued the company at $4.5 billion (per TechCrunch).

On openness, Nvidia's stated commitments are specific. The post says "Hugging Face will remain an open platform for the entire AI ecosystem," that "NVIDIA compute will not be required to build on or deploy through Hugging Face," and that the platform will keep supporting open source and open-weight models across multiple clouds and multiple chip vendors. Worth being clear-eyed: these are intentions from the acquirer, not binding terms you can hold them to, and the people making them would be running a platform whose main asset is being neutral ground. Reporting from Bloomberg and others notes that a purchase this size draws a full merger review in the US and probably the EU, with the central question being whether Nvidia would tilt a vendor-neutral hub toward its own hardware.

What it means for you

If you run local AI, Hugging Face is probably in your supply chain whether you visit the site or not. When you pull a model with a tool built on the huggingface_hub library, or download a GGUF file for llama.cpp, or grab a dataset to feed a retrieval setup, the bytes usually come from Hugging Face's servers. Ollama keeps its own registry, but a large share of what people run through it started life as a Hugging Face upload. The Hub is the shelf almost everything sits on.

Here is the mechanism that matters. An open-weight model you have already downloaded is a set of files on your disk, released under a license (Apache 2.0, MIT, the Llama community license, and so on) that does not expire because the hosting company changed owners. You can keep those files, run them offline, and in most cases redistribute them. Ownership of the Hub does not reach backward into copies you already hold.

What ownership can affect is the future: which models get published there first, whether the default download client reports more telemetry, whether more downloads sit behind a login or an accepted-terms click, and whether formats tuned for Nvidia hardware get promoted over others. None of that has happened, and some of it may never happen. But the Hub has already been a real target once - an AI agent breached Hugging Face infrastructure in a documented incident - so "trust the hub completely and pull latest every time" was already shakier than it felt. A change of owner is a good prompt to tighten how you depend on it. This is the same instinct behind knowing where your data actually goes: understand the parts of your setup you do not control.

The one thing not to miss: a change of ownership does not retroactively close a model you have already downloaded. Open-weight files on your disk stay usable under the license they shipped with. The open questions are about future releases and platform defaults, which is exactly why a local copy of what you depend on is worth making now rather than later.

Does this change what this site recommends?

No. The first path here is unchanged: install Ollama, pull a small model, and go, as covered in choosing your first model. The reasons people run AI locally - your prompts stay on your machine, no per-token bill, no account required - are about where inference happens, and inference on your own hardware is not touched by who owns the model hub. The open-weight models this site points to (Qwen, Llama, Mistral, Gemma and similar) are published by their own makers under their own licenses, and nothing in this deal changes those licenses.

If anything, the deal is a mild argument for something this site already tells you to do: keep local copies of what you rely on, and do not treat any single hosted service as permanent.

What to actually do now

All optional, and none of it urgent given the timeline. In rough order of value:

  • Keep local copies of the models you actually use. Once a model is downloaded and working, it is just files. Fold your model directory into your backup routine so a redownload is never on the critical path.
  • Pin exact versions. When you pull a model, record the specific revision (the commit hash on the model's page), not just the name. That way "the version I tested" is a fixed thing, not whatever "latest" points to next year. This fits with updating deliberately rather than automatically.
  • Verify what you download. Check file hashes against the ones listed on the model page. That also catches a truncated or corrupted download.
  • Turn off Hub telemetry if you want. The huggingface_hub client already respects environment variables that reduce what it reports back. Setting HF_HUB_DISABLE_TELEMETRY=1, and HF_HUB_OFFLINE=1 once you have what you need, is a reasonable default for a privacy-minded setup. Confirm the current variable names in the library's docs, since these have changed before.

Sources: Nvidia's announcement post (primary source for the price and the openness commitments), Nvidia's 8-K filing with the SEC for deal structure and closing timeline, and reporting from CNBC, NBC News, Bloomberg, and TechCrunch (2023 funding round).