NVIDIA has reportedly agreed to acquire Hugging Face for about $12.9 billion. The Information broke the story on August 26; CNBC, Fortune and others followed. As of this writing neither company has confirmed it, and reporting suggests the talks have not produced a signed agreement and could still fall apart. Treat the number as reported, not final.
The direction is hard to misread. NVIDIA already sells most of the compute the industry trains on. Buying the hub where open models are published and downloaded is a move up the stack — toward owning the ecosystem in which AI gets built, not just the accelerators underneath it.
But who owns the AI build workflow?
"Isn't Hugging Face already GitHub for AI?"
You build AI. Do you actually build it in Hugging Face?
We hear the GitHub comparison whenever we describe TReqs as GitHub for building AI, and it's a fair one. The Hub is where models, datasets and demos get published, versioned, discovered and consumed. It has the network effects, the gravity and the default-destination status GitHub has for source code. If you want an open model, you go there.
But for most teams doing this professionally, the answer to the question above is not really. The model gets published to Hugging Face. It gets built somewhere else — on a Slurm cluster or a cloud account, kicked off from a laptop or a CI job, with the decision to spend the compute made in a Slack thread and the metrics landing in a tracker. Hugging Face is the destination. It is not usually where the proposal, the review, the execution and the eventual explanation of a model build all live.
That is not a knock. Hugging Face is moving into this territory deliberately — Jobs, Trackio, Spaces, storage, evaluation. The question is not whether they could own the build workflow. It is whether anyone owns it today.
The stack, laid out plainly
Software development converged on a shape that everyone recognizes:
repo → pull request → review → CI → artifact
Every step leaves a durable record, and the record is a byproduct of doing the work rather than a thing anyone maintains separately. AI model development has a different shape:
repo + data + config → training infrastructure → tracker → model artifact
There is no pull request in that line. There is no single place where the intent to build a model is connected to evidence of what was actually built. Here is roughly who owns what:
| Layer | Who owns it |
|---|---|
| Code workflow | GitHub |
| Model & artifact ecosystem | Hugging Face |
| Compute | NVIDIA and the clouds |
| Experiment tracking | W&B, Trackio, MLflow |
| Model-build workflow and execution evidence | still fragmented |
These are not mutually exclusive categories, and the boundaries are moving. But the last row is the one that is genuinely unclaimed, and it is the row that determines whether you can answer "how was this model made?" six months later.
What's the pull request for building a model?
blue is what was requested · green is what was observed
That question is what TReqs is built around. A Training Request is the same shape as a pull request: propose a model-building operation, expose the code, data, configuration and compute it will consume before it runs, review or approve where that matters, execute it on whatever infrastructure the team already uses, and attach evidence of what actually happened.
The last part is where it stops being a workflow diagram and starts being useful. roar observes the run at the OS level rather than trusting the training code to report on itself — no instrumentation, no code changes, no decorators. It records the files, environment, parameters and artifacts that were genuinely involved. GLaaS stores that as a content-addressed lineage graph, and an AI-BOM falls out of it on demand.
The distinction that matters:
A requested build is what someone said would happen. An observed build is what did. Software has spent two decades learning that the gap between those two is where the bugs live.
Open models make this more important, not less
If NVIDIA is making a $12.9 billion bet on open-model distribution, the value of what gets distributed is the whole thesis. The size of the bet is worth sitting with: Hugging Face was valued at $4.5 billion in its 2023 round — one NVIDIA participated in — and reportedly turned down a $500 million NVIDIA investment at a $7 billion valuation earlier this year. Roughly three times the 2023 price, against about $150 million in annualised revenue. You do not pay that for a file host. You pay it for a position in how open models get made and adopted.
Which puts weight on a question the ecosystem answers unevenly:
- Open weights are valuable.
- Open weights plus a published recipe are more valuable.
- A published recipe that somebody other than the authors can actually run is more valuable still.
That last rung is less occupied than you would hope, which is why we started The Reproducible AI List. We take prominent open models, hand the published repository and recipe to a clean-room agent with no prior knowledge of the model, and attempt a rebuild from the published materials alone. The runs execute under roar, so we capture what actually happened rather than what the README said should happen. Then we publish all of it — what worked, what broke, what it cost, and the lineage graph behind each claim.
We are not claiming bit-for-bit determinism; that is a different and much narrower bar. The claim is process reproduction under stated conditions, with evidence. The question the campaign asks is simply:
Can someone other than the publisher rebuild this model from what was published?
Sometimes yes, cleanly. Sometimes only after patching a dependency the authors never declared. Sometimes not at all. All three outcomes are on the list, including the ones that make our own tooling look bad.
Everyone is moving up the stack
Step back from this one deal and the pattern is unmistakable. NVIDIA may soon own Hugging Face. Microsoft owns GitHub. CoreWeave owns Weights & Biases. Nscale is buying Anyscale. The compute layer is buying the workflow layer, and the distribution layer is being consolidated into it.
Which makes the remaining question sharper rather than softer. It is not who hosts the models, and it is not who rents the GPUs. Both look increasingly settled.
The remaining question is who owns the workflow by which teams actually build them.