
CARI4D Commercial: NVIDIA Opened Its 4D Interaction Model to Business, Quietly
- OrcaNEWOrca: OrcaCyber Zero 1.02026-09-17$3.00 / $5.00 per 1M tokens
- orcaNEWOrca: OrcaVerify Text 1.02026-09-16$2.00 / $0.00 per 1M tokens
- deepseekNEWDeepSeek: DeepSeek V4.1 Flash2026-09-1040Intelligence
- openaiOpenAI: GPT-6 Astra2026-09-0453Intelligence77Coding
- googleGoogle: Gemini 3.8 Flash2026-09-0241Intelligence76Coding
- qwenQwen: Qwen3.8 Max (0902)2026-09-0245Intelligence76Coding
- anthropicAnthropic: Claude Fable 5.12026-09-0153Intelligence82Coding
- AlibabaQwen: Qwen3.8 Flash2026-08-26$0.15 / $0.47 per 1M tokens
- z-aiZ.ai: GLM 5.3 Flash2026-08-2642Intelligence72Coding
- DeepSeekDeepSeek: DeepSeek V4 Flash Vision (Exp)2026-08-21$0.22 / $0.66 per 1M tokens
- z-aiZ.ai: GLM 5.32026-08-1845Intelligence75Coding
- obsidianQwen3.8 27B2026-08-1534Intelligence68Coding
- deepseekDeepSeek: DeepSeek V4 Pro 08132026-08-1236Intelligence69Coding
- grokSpaceXAI: Grok 4.62026-08-1244Intelligence77Coding
- metaMeta: Muse Spark 1.22026-08-0540Intelligence72Coding
- qwenQwen: Qwen3.8 Max2026-08-0345Intelligence76Coding
- deepseekDeepSeek: DeepSeek V4 Flash 07312026-07-3134Intelligence69Coding
- minimaxMiniMax: MiniMax-H32026-07-31minimax/minimax-h3
- qwenQwen: Qwen3.7 Flash2026-07-27$0.03 / $0.13 per 1M tokens
- orcaOrcaDub: OrcaDub 1.02026-07-27orca/dub
Sometime around August 30, 2026, a gated repository called nvidia/cari4d_commercial appeared on Hugging Face. Its model card describes a checkpoint the vendor calls "CARI4D CoCoNet Native Momentum Human Rig (MHR)" — a 231-million-parameter network that takes an ordinary MP4 video and returns, frame by frame, the pose of one human and one rigid object they are handling, plus two hand-contact logits. The licence line reads nvidia-open-model-agreement, and the card states the model is ready for commercial or non-commercial use. That is a meaningful change from CARI4D's previous life. The research repository, nvidia/CARI4D, ships the same family of model — CoCoNet, 194M parameters — under the NVIDIA License with the words "for research and development only" printed on the card. It is the difference between a paper you can read and a component you can ship.
What makes this newsworthy is not the release. It is the silence around it. This is not a launch: NVIDIA has published no blog post, no newsroom entry, no benchmark table and no pricing for cari4d_commercial, and at the time of writing the repository is reachable only after accepting terms and sharing contact information. Everything below is read off the two model cards and the public code release. Where a claim is NVIDIA's own and unreproduced, this article says so.
What actually changed on August 30
The temptation is to file this as a licence change. It is more than that. Read the two cards against each other and three things moved at once — the licence, the size of the checkpoint, and the human body model underneath it.
• Parameters — CARI4D research release 194M vs CARI4D CoCoNet MHR 231M
• Checkpoint — step031397.pth (31,397 training steps) vs version string 2026-08-25-09-35-57, step 200,000, status "Training completed"
• Body rig — SMPL / SMPL-H pose and shape vs Native Momentum Human Rig (MHR) parameters
• Licence — NVIDIA License, "research and development only" vs NVIDIA Open Model Agreement, commercial use permitted
• Access — open download vs gated, conditions must be accepted
• Outputs — updated SMPL pose, shape, translation, object rotation and translation, binary hand contact vs per-frame object pose and MHR residuals, plus two hand-contact logits

The step count is the line that deserves attention. A research checkpoint frozen at roughly 31k steps and a production checkpoint that ran to 200,000 are not the same object with a different licence header stapled on. NVIDIA also reports the 231M figure as "measured from the step-84,000 model state, excluding registered buffers," which tells you the card is describing a training lineage rather than a single frozen artefact.
The body rig swap matters just as much for anyone who has already built against CARI4D. The research line is SMPL-based throughout — the paper's optimisation terms regress SMPL pose, shape and translation, and the code depends on SMPL-H pickle files plus a VolumetricSMPL patch. MHR is a different parameterisation. If you wrote integration code against the research checkpoint's output tensors, the commercial card's output shape is not a drop-in.
The research release this is built on is eight months old
It is worth being precise about the timeline, because the phrase "new model" would be wrong here and the phrase "old model" would be wrong too.
The CARI4D paper — Category Agnostic 4D Reconstruction of Human-Object Interaction, by Xianghui Xie, Bowen Wen, Yan Chang, Hesam Rabeti, Jiefeng Li, Ye Yuan, Gerard Pons-Moll and Stan Birchfield — went up on arXiv on December 16, 2025 as 2512.11988, and was accepted at CVPR 2026. The NVlabs code release followed on February 28, 2026. Training code and custom-video preprocessing landed on April 4. By any normal reckoning the research line is a settled, eight-month-old piece of work with a completed TODO list.

So the honest framing is this: the method is old news, and the commercial artefact is three weeks old. If you searched for CARI4D in March and concluded it was a research curiosity with a restrictive licence, that conclusion was correct then and is stale now. That is the entire reason this belongs in a news slot.
What the model actually does, and how well
CARI4D reconstructs human-object interaction in 4D — three dimensions of space plus time — at metric scale, from a single monocular RGB video. That last constraint is the interesting one. Recovering the metric scale of an object a person is holding, from one ordinary camera, with no depth sensor and no multi-view rig, is the problem the paper is built around.
The pipeline is a chain of foundation models rather than one end-to-end network: UniDepth for metric depth, NLF and GENMO for human pose, Hunyuan3D for object meshes from a single image, FoundationPose for object tracking, VolumetricSMPL for a signed-distance body model. CoCoNet — the part NVIDIA is actually releasing — sits in the middle and does the contact reasoning. It renders the current human and object estimate into RGB, depth and masks, then compares that render against the real observation using a DINOv2 ViT-B/14 RGB encoder and a ViT-S/14 six-channel XYZ-and-mask encoder, runs two spatial-temporal attention blocks, and regresses per-frame corrections through MLP heads.
The reported numbers, from the paper and the vendor's own card: 38% lower reconstruction error than prior art on in-distribution datasets, 36% on unseen datasets. The ablation that makes the architecture legible puts object Chamfer distance at 1,565.42 cm from raw NLF plus FoundationPose tracking, 16.85 cm after CARI4D initialisation, and 11.59 to 11.57 cm once CoCoNet refinement and the full joint optimisation are switched on. Those are vendor figures from a peer-reviewed paper — better provenance than a marketing page, still not an independent reproduction, and no third party has published one.
The commercial card adds a detail the paper could not: the model was trained on FORM-HOI, described as 2,126 internal sequences, and the card states plainly that there is no separate testing dataset — evaluation is a qualitative demo set. It also notes that the internal "Daniel" training corpus is not distributed. Read together, that is a vendor telling you the training distribution is theirs and the generalisation evidence is thinner than the ablation table suggests.
What the licence actually grants, and what it does not
The NVIDIA Open Model Agreement is a permissive commercial licence, but "commercial use permitted" is not the same as "no obligations." The card lists the model as intended for developers and researchers building commercial or noncommercial vision systems for 3D/4D human-object pose estimation, motion analysis, visualisation, data curation and robotics perception, and explicitly rules out direct autonomous actuation or life-critical decisions.

Two practical notes for anyone evaluating this. First, the repository is gated: you accept conditions and share contact information before the files appear, so procurement and legal review happen before the download, not after. Second, the deployed model is not self-contained. CoCoNet is 231M parameters, but it does not run alone — the wider pipeline still pulls NLF torchscript weights, FoundationPose weights, SMPL-H assets, a `kid_template.npy`, and it still needs Hunyuan3D to produce the object meshes in the first place. The commercial licence covers the part NVIDIA is releasing. It does not cover the third-party dependencies around it, and each of those carries its own terms. That is the most common way a release like this surprises a legal team.
Where this lands for people building with models
To be direct about scope: CARI4D is a computer-vision reconstruction model, not a language model, and OrcaRouter does not serve it. Nothing in this article should be read as saying otherwise — self-hosting it with PyTorch on an Ampere-class GPU, which is the configuration the card says it was validated on, is the only way to run it today.
The reason it is still worth a paragraph here is that the card names data curation as a primary intended use, and that is the part of a 4D pipeline where language models actually live. Building a human-object interaction dataset means captioning clips, labelling contact events, writing QC prompts and filtering failures — work that runs through vision-language and language models, and work that scales badly if each one is a separate contract and a separate key. Routing more than 200 models behind a single API at OrcaRouter, with the provider's list price passed through at 0% markup and automatic failover when a provider degrades, is what that layer looks like when it is not bespoke. Vendor price cuts reach the endpoint the same day, because there is no markup to re-derive. That is a different job from what CARI4D does, and it is the job that surrounds it.
What would change this read
Four things. An NVIDIA announcement would convert a quiet repository into a supported product, and with it would come the pricing and support terms that are currently absent. A published evaluation on a dataset NVIDIA did not build would settle the generalisation question the card leaves open. Documentation of what MHR changes relative to SMPL would tell existing CARI4D integrators how expensive the migration actually is — right now the card names the rig without explaining the delta. And a resolution on the third-party dependencies would decide whether "commercially licensed" means what a procurement team will assume it means.
Until then the correct description is narrow and unglamorous, and it is the one the evidence supports: NVIDIA's CARI4D line has had a commercially licensed, larger, longer-trained checkpoint available since August 30, 2026, and the vendor has not said a word about it. If you need 4D human-object interaction at metric scale and you had written this off as research-only, the blocker you were working around is gone.
