NVIDIA Physical AI Datasets (Hugging Face)
Purpose
Help the agent find, evaluate, and download an NVIDIA PhysicalAI-*
dataset on Hugging Face that fits the user's downstream task —
autonomous-vehicle reconstruction, robotics manipulation, GR00T
post-training, spatial-intelligence research, grasping, or sim-ready
content — and then hand off to the sibling skill (ncore, nre,
asset-harvester, nurec-fixer) or upstream NVIDIA tool that
actually consumes it.
Use this skill when: the user asks "is there an NVIDIA dataset
for X?", "where do I get NCore / NuRec / GR00T sample data?", or is
shopping the Hugging Face NVIDIA org for PhysicalAI-* collections.
Do NOT use this skill when:
- The user already knows the dataset and just wants to run a
pipeline — jump straight to the consuming skill.
- The user needs a non-NVIDIA dataset (Waymo, nuScenes, KITTI, …) —
this catalog is NVIDIA-only.
- The user wants to train Cosmos / GR00T / Isaac Sim itself — that's
the upstream tool's job, not this catalog's.
Overview
Catalog of NVIDIA's open Physical AI dataset family on Hugging Face.
Pick by task (Section 2 § lookup table) or family (Sections 3–10).
Every entry lists: dataset path, size, format, license, gating, and the
downstream skill in this repo that consumes it.
Source of truth: https://huggingface.co/nvidia (filter PhysicalAI-)
and the curated Physical AI collection.
When upstream cards drift, re-check the HF page; this skill mirrors
the cards as of Apr 2026.
Prerequisites
- HuggingFace account with the dataset card opened in a browser at
least once, and the gating checkbox accepted on every dataset you
intend to download.
- HuggingFace user access token exported as
HF_TOKEN (create at
https://huggingface.co/settings/tokens).
git, git-lfs, and huggingface_hub[cli] on PATH.
- Storage room sized to the dataset you're pulling (see the per-row
size column; some are < 1 GB, the AV dataset is 133 TB — always
pre-filter with
--include or physical_ai_av).
Verifying secrets safely
Always check token presence with hf auth whoami or a length-only
shell test; never write ad-hoc bash that interpolates HF_TOKEN
values. The common one-liner
# BAD — leaks the secret to the terminal when the variable is set
echo "HF_TOKEN: ${HF_TOKEN:+yes}${HF_TOKEN:-no}"
prints yes<token-value> whenever HF_TOKEN is set, because
${VAR:-no} only falls back to "no" when VAR is empty — when set
it expands to $VAR. Use one of these instead:
hf auth whoami # confirms the token without echoing it
test -n "$HF_TOKEN" && echo "HF_TOKEN: set (${#HF_TOKEN} chars)" || echo "HF_TOKEN: missing"
Rotate any token you suspect was echoed at
https://huggingface.co/settings/tokens.
Table of Contents
- Common download recipe — HF auth, gating, CLI.
- Filtered AV download recipe — default
hyperion_8.1 filter for PhysicalAI-Autonomous-Vehicles raw pulls.
- Pick a dataset by task — fast lookup table.
- Autonomous Vehicles — 5 datasets.
- Robotics — Manipulation — 6 datasets.
- Robotics — GR00T — 7 datasets.
- Robotics — mindmap — 4 datasets.
- Robotics — NuRec / Sim-Ready scenes — 2 datasets.
- Robotics — Healthcare — 1 dataset.
- Robotics — Grasping — 1 dataset.
- Robotics — Physical / material properties — 2 datasets.
- Spatial Intelligence + SimReady scenes — 5 datasets.
- Community / sample — 1 dataset.
- License decision tree — what you can do with each.
- Cross-skill usage map — which skill consumes which dataset.
Common download recipe
All NVIDIA Physical AI datasets live on huggingface.co/datasets/nvidia/...
and use the same access shape:
sudo apt -y install git git-lfs
git lfs install
uv tool install -U "huggingface_hub[cli]" # or: pip install --upgrade "huggingface_hub[cli]"
hf auth login # paste user access token
The token must:
- Have a HF user account that's logged in to the dataset page in a browser AT LEAST ONCE.
- Have accepted any license / terms-of-use checkbox the dataset shows
(re-accept if the dataset has been re-gated — common for AV).
Three download patterns:
# Whole dataset (small / medium)
hf download nvidia/<dataset> --repo-type dataset --local-dir ./<dataset>
# Sub-folder only (recommended for large multi-task collections)
hf download nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim \
--repo-type dataset \
--include "gr1_arms_only.CanSort/**" \
--local-dir ./gr00t_dataset
# Sparse-checkout via git-LFS (if you want incremental git-style work)
git clone --filter=blob:none --no-checkout https://huggingface.co/datasets/nvidia/<dataset>
cd <dataset>
git sparse-checkout init --cone
git sparse-checkout set <subfolder>
git checkout main
Special-case downloaders:
PhysicalAI-Autonomous-Vehicles (133 TB) — use the official Python
toolkit pip install physical_ai_av
(NVlabs/physical_ai_av)
to filter by sensor / country / split before downloading; otherwise
you will pull TBs you don't need.
Default policy: pre-filter to platform_class == 'hyperion_8.1'
before any bulk pull. The dataset mixes two sensor rigs
(hyperion_8 and hyperion_8.1) and the entire downstream
NuRec / NCore / Asset-Harvester chain in this repo is only
validated for hyperion_8.1. Roughly half of the 306k clips fall
outside that platform, so the filter typically cuts the working set
(and download size) in half.
Apply this filter by default in any download script you generate.
Only skip the filter when the user explicitly asks for it (e.g.
"download all platforms", "include hyperion_8", "don't filter by
platform") or when they hand you a specific clip UUID — in that
single-clip case, download_clip_features(clip_id=...) is already
scoped and no platform filter is needed.
Canonical filtered recipe (see § Filtered AV download recipe
below for an end-to-end example):
from physical_ai_av import PhysicalAIAVDatasetInterface
dataset = PhysicalAIAVDatasetInterface()
dataset.download_metadata()
dc = dataset.metadata['data_collection']
hyperion_81_clip_ids = dc[dc['platform_class'] == 'hyperion_8.1'].index.tolist()
PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams (3 TB) — use the
upstream download.py
(nv-tlabs/Cosmos-Drive-Dreams)
with --file_types {hdmap,lidar,synthetic} to select layers.
PhysicalAI-SpatialIntelligence-Lyra-SDG (25 TB) — hf download --local-dir lyra_dataset/tar; untar each tar yourself.
Spatial-Intelligence-Warehouse — chunked TAR-GZs need a manual
loop after download (script provided in the upstream card).
For dataset filtering / preview: NVIDIA's
Cosmos Dataset Search (CDS)
lets you query a 41K subset of the AV dataset semantically before
downloading.
Filtered AV download recipe
Always use this recipe (or a derivative of it) when the user asks to
download raw clips from PhysicalAI-Autonomous-Vehicles. The
hyperion_8.1 filter is the default; it matches every downstream
skill in this repo (ncore, nre, asset-harvester, nurec-fixer).
When to skip the platform filter:
- The user explicitly opts out — e.g. "download all platforms",
"include hyperion_8 too", "ignore platform_class", or asks for a
dataset-wide statistic. In that case, drop the platform mask and
warn them that NuRec / NCore tooling will not work on the
hyperion_8 clips.
- The user gave you a specific clip UUID. A single-clip
download_clip_features(clip_id=...) is already scoped, and
filtering by platform_class for one clip is pointless.
Recipe (defaults: filter on; user may layer extra masks like country
or sensor presence on top):
from physical_ai_av import PhysicalAIAVDatasetInterface
dataset = PhysicalAIAVDatasetInterface()
dataset.download_metadata()
dc = dataset.metadata['data_collection']
clip_mask = dc['platform_class'] == 'hyperion_8.1'
# Optional extra masks (only add when the user asked for them):
# clip_mask &= dc['country'] == 'US'
# sp = dataset.metadata['feature_presence'] # 26.03+; was 'sensor_presence' in 25.10
# clip_mask &= sp['lidar_top_360fov']
clip_ids = dc[clip_mask].index.tolist()
print(f"Downloading {len(clip_ids)} hyperion_8.1 clips")
dataset.download_clip_features(
clip_id=clip_ids,
features=["camera_front_wide_120fov", "lidar_top_360fov", "egomotion"],
max_workers=8,
)
Single-clip fast path (no platform filter — the UUID is already
specific):
dataset.download_clip_features(
clip_id="<paste-clip-uuid>",
features=["camera_front_wide_120fov", "lidar_top_360fov", "egomotion"],
)
Explicit opt-out (only when the user asked for it):
clip_ids = dc.index.tolist() # NO platform filter — all 306k clips
# WARNING: downstream NuRec / NCore / Asset-Harvester only handle
# the hyperion_8.1 subset.
Pick a dataset by task
| Goal |
Recommended dataset(s) |
| End-to-end AV training (real, multi-sensor) |
PhysicalAI-Autonomous-Vehicles (133 TB, 1700 h, 25 countries) |
AV in NCore V4 format (drop-in for ncore) |
PhysicalAI-Autonomous-Vehicles-NCore (~1.1k clips) |
| AV photoreal Sim2Real / weather augmentation |
PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams (3 TB; 7 weather variants) |
| AV neural reconstructions ready for CARLA / NuRec |
PhysicalAI-Autonomous-Vehicles-NuRec (918 USDZ scenes) |
| Asset Harvester / 3DGS extraction sample clip |
PhysicalAI-Autonomous-Vehicles-NCore |
| GR00T post-training, broad coverage |
PhysicalAI-Robotics-GR00T-X-Embodiment-Sim (1.91 TB, 24 GR1 task families + bimanual + RoboCasa) |
| GR00T fine-tune on industrial tasks |
PhysicalAI-GR00T-Tuned-Tasks (Nut Pouring, Exhaust Pipe Sorting) |
| GR00T eval images / videos |
PhysicalAI-Robotics-GR00T-Eval, PhysicalAI-Robotics-GR00T-GR1 |
| Real humanoid teleop (Unitree G1) |
PhysicalAI-Robotics-GR00T-Teleop-G1 (1000 trajectories) |
| Sim humanoid teleop (Fourier GR1) |
PhysicalAI-Robotics-GR00T-Teleop-Sim (24 tasks × 1k trajectories) |
| Massive humanoid pretraining (44k h, DreamDojo) |
PhysicalAI-Robotics-GR00T-Teleop-GR1 (74.3 GB) |
| Spatial-memory imitation learning (mindmap) |
PhysicalAI-Robotics-mindmap-{Stick-in-Bin,Drill-in-Box,Cube-Stacking,Mug-in-Drawer} |
| Robot pick-place in kitchen (bimanual Kinova Gen3) |
PhysicalAI-Robotics-Manipulation-Kitchen, -Manipulation-Objects |
| Robot pick-place tabletop (single Franka) |
PhysicalAI-Robotics-Manipulation-SingleArm |
| Cosmos-Transfer1 visual-augmented stacking |
PhysicalAI-Robotics-Manipulation-Augmented |
| Massive teleop in kitchen (Franka + mobile base) |
PhysicalAI-Robotics-Manipulation-Kitchen-Demos (600 h, 316 tasks, 55k traj) |
| MJCF kitchen objects + fixtures (MuJoCo) |
PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF |
| Sim-Ready warehouse for IsaacSim |
PhysicalAI-SimReady-Warehouse-01 (753 USD assets) |
| GR1 tabletop digital cousins (assets) |
PhysicalAI-DigitalCousin-Assets |
| 3DGS / Sim-Ready indoor scenes for AMR sim |
PhysicalAI-Robotics-NuRec (Nova Carter labs, Zurich offices, hand-held) |
| Multi-cam tracking + 3D box benchmark |
PhysicalAI-SmartSpaces (AI City Challenge 2024 + 2025) |
| 3D scene QA / VLM training (warehouses) |
PhysicalAI-Spatial-Intelligence-Warehouse (499k QA pairs) |
| Generative 3D scene reconstruction training |
PhysicalAI-SpatialIntelligence-Lyra-SDG (25 TB; GEN3C-derived) |
| Radiance-field photometric benchmark |
PhysicalAI-NuRec-PPISP (8 sequences, +/-2 EV bracketing) |
| Grasping models (Franka, Robotiq-2f-140, suction) |
PhysicalAI-Robotics-GraspGen (57M grasps, Objaverse-LVIS) |
| Healthcare / surgical robotics autonomy |
PhysicalAI-Robotics-Open-H-Embodiment (750 h, 4.5 TB, 30+ orgs) |
| Volumetric mechanical / material properties |
PhysicalAI-Robotics-PhysicalAssets-VoMP, -VoMP-Eval |
Autonomous Vehicles
PhysicalAI-Autonomous-Vehicles
The flagship real-world AV dataset.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles |
| Size |
133 TB — 306,152 clips × 20 s = 1700 h |
| Sensors |
7 cameras (1080p @ 30 FPS), top-360 LiDAR (10 Hz, 298k clips), up to 10 radars (160k clips), ego motion, calibration, machine labels |
| Geography |
25 countries, 2500+ cities (US 155k, Germany 44k, …) |
| Format |
Per-sensor parquet/mp4 chunks of ~100 clips; UUIDs cross-link sensors |
| License |
NVIDIA AV Dataset License Agreement (gated; AV-development-only purpose; no biometric / surveillance / re-identification; expires 12 months after download) |
| Toolkit |
pip install physical_ai_av — direct filtered downloads + format docs. Default to filtering metadata['data_collection']['platform_class'] == 'hyperion_8.1' before any bulk pull (see Filtered AV download recipe); only skip the filter on explicit user request or when downloading a specific clip UUID. |
| Versions |
26.03 (current; offline-optimized features for 97 % of clips), 25.10 (initial) |
| Subset preview |
41k clips searchable on Cosmos Dataset Search |
| Use with |
../ncore/SKILL.md (convert raw clips to NCore V4), ../asset-harvester/SKILL.md (extract per-object Gaussian assets). NuRec workflows are only validated for platform_class == hyperion_8.1. Upstream sim/training tools without an in-repo skill: NVlabs/alpamayo-1.5, NVlabs/alpasim, CARLA. |
PhysicalAI-Autonomous-Vehicles-NCore
Curated NCore V4 subset of the above.
PhysicalAI-Autonomous-Vehicles-NuRec
Pre-built NuRec dynamic neural reconstructions ready for IsaacSim / CARLA.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles-NuRec |
| Size |
918 USDZ scenes, ~20 s each, with surface meshes + front-camera mp4 + labels.json (Batch0002+) |
| Reconstruction |
6 cameras (front-wide 120°, front-tele 30°, cross-L/R 120°, rear-L/R 70°) |
| Versions |
26.02 (current), 25.07, 25.05 |
| License |
NVIDIA AV Dataset License Agreement (gated) |
| Use with |
../nre/SKILL.md (render the USDZs locally or over serve-grpc), ../nurec-fixer/SKILL.md (clean up rendered frames). Upstream consumer without an in-repo skill: CARLA (NuRec integration in 0.9.16+). |
PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams
Cosmos-Transfer-style synthetic + HD-map labels for diverse weather.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams |
| Size |
3 TB total (synthetic only ~700 GB) — 5,843 RDS-HQ clips × 2 chunks × 7 weather = 81,802 synthetic videos (121 frames each) |
| Modalities |
Cosmos-generated MP4, HDMap (lanes/lanelines/road boundaries/wait lines/crosswalks/markings/poles/lights/signs), LiDAR, vehicle pose, camera intrinsics (ftheta + pinhole), 4D object tracking |
| Cameras |
7 (front-wide/cross-L/cross-R/rear-L/rear-R/rear-tele/front-tele) |
| Weather variants |
Foggy / Golden hour / Morning / Night / Rainy / Snowy / Sunny |
| License |
CC-BY-4.0 (commercial OK with attribution) |
| Tooling |
wget … scripts/download.py; python download.py --odir <path> --file_types hdmap,lidar,synthetic |
| Paper |
https://arxiv.org/abs/2506.09042 |
| Use with |
Upstream consumers without an in-repo skill: nvidia/Cosmos-Transfer1, nvidia/Cosmos-Predict, NVlabs/alpasim, CARLA. |
PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic
Robotics — Manipulation
All in LeRobot v2.x format unless noted, generated in IsaacSim with
task-and-motion planning + scene_synthesizer procedural scenes +
CuRobo motion generation.
PhysicalAI-Robotics-Manipulation-Kitchen
Bimanual Kinova Gen3 in procedurally-generated kitchens.
PhysicalAI-Robotics-Manipulation-Objects
Same kitchen environment, bimanual Kinova; pick / place bench / place cabinet.
PhysicalAI-Robotics-Manipulation-SingleArm
Franka Panda tabletop, procedurally generated.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-SingleArm |
| Size |
15.3 GB |
| Tasks |
panda-stack-wide, panda-stack-platforms, panda-stack-platforms-texture, panda-open-cabinet-{left,right}, panda-open-drawer (~38k episodes) |
| Modalities |
World cam + wrist cam (RGB + depth on the texture/cabinet/drawer subsets) |
| State |
53 D (stack-wide) / 81 D (others) — proprioception + object poses |
| License |
CC-BY-4.0; commercial OK |
PhysicalAI-Robotics-Manipulation-Augmented
Mimic-generated Franka cube-stacking, plus Cosmos-Transfer1 visual augmentation.
PhysicalAI-Robotics-Manipulation-Kitchen-Demos
Massive human-teleop dataset on Franka + Omron mobile base.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Kitchen-Demos |
| Size |
600 h, 55k trajectories, 316 tasks |
| Format |
LeRobot v2.x with MuJoCo extras/ (model.xml.gz + raw states) |
| Cameras |
left + right agentview + eye-in-hand |
| Tasks |
pretrain/atomic/... × 100 traj/task (Open*, Close*, PickPlace*, Adjust*, Coffee*, NavigateKitchen, …) |
| Use with |
Pair with the MJCF assets dataset below for replay in MuJoCo. |
PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF
The MuJoCo XML assets that back the Kitchen-Demos environment.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF |
| Size |
1.32 GB |
| Categories |
Objects (~58 categories from kettle to whisk) + Fixtures (12 — blender, coffee machine, dishwasher, electric kettle, fridge, microwave, oven, stand mixer, stove, toaster, toaster oven, cabinet panel) |
| Format |
Per-model model.xml + visual / collision OBJ + textures, zipped per category |
| Use with |
MuJoCo replay of Manipulation-Kitchen-Demos. |
Robotics — GR00T
GR00T = NVIDIA's generalist humanoid foundation model line. Most data is
sim-generated for post-training; eval / real-robot supplements are
small.
PhysicalAI-Robotics-GR00T-X-Embodiment-Sim
Largest GR00T post-training corpus.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim |
| Size |
1.91 TB |
| Composition |
9k cross-embodied bimanual (Panda + GR1) + 240k humanoid GR1 tabletop + 24k downsampled + 72k single-Panda RoboCasa + 102 Unitree G1 loco-manipulation = ~345k trajectories |
| Used by |
nvidia/GR00T-N1.5-3B, GR00T-N1.6-3B, GR00T-N1.6-bridge, GR00T-N1.6-G1-PnPAppleToPlate, GR00T-N1.6-DROID, GR00T-N1.6-fractal |
| Download tip |
Always pass --include "<task>/**" — full clone is 1.91 TB |
PhysicalAI-GR00T-Tuned-Tasks
Two industrial post-training task families.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-GR00T-Tuned-Tasks |
| Size |
26.5 GB |
| Tasks |
Exhaust-Pipe-Sorting (1000), Nut-Pouring (1000) |
| Format |
HDF5 + GR00T-LeRobot, 256² first-person RGB, 26-DoF state/action, 20 Hz |
| License |
CC-BY-4.0; commercial OK |
| Models |
nvidia/GR00T-N1-2B-tuned-Nut-Pouring-task, …-Exhaust-Pipe-Sorting-task |
PhysicalAI-Robotics-GR00T-Teleop-G1
Real-robot Unitree G1 fruit pick-and-place.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-G1 |
| Size |
534 MB |
| Trajectories |
1000 real teleop, Unitree G1 upper body + Tri-finger hands + RealSense |
| Tasks |
Pick {apple, pear, grapes, starfruit} → basket |
| Format |
MP4 + HDF5 |
| License |
CC-BY-4.0; commercial OK |
| Use with |
Isaac-GR00T finetune docs (getting_started/3_0_new_embodiment_finetuning.md) |
PhysicalAI-Robotics-GR00T-Teleop-Sim
Simulated GR1 tabletop teleop.
PhysicalAI-Robotics-GR00T-Teleop-GR1
DreamDojo pretraining corpus — large-scale human egocentric video.
PhysicalAI-Robotics-GR00T-GR1
Lab-recorded GR1-T2 third-person video.
PhysicalAI-Robotics-GR00T-Eval
GR00T eval initial-state frames.
Robotics — mindmap
Spatial-memory benchmark from nvidia-isaac/nvblox_mindmap. Each
dataset is one task with the same multimodal layout (RGB-D + camera
intrinsics/poses + nvblox vertex features in .zst + robot state).
All four are CC-BY-NC-4.0 (research only). Models trained:
nvidia/PhysicalAI-Robotics-mindmap-Checkpoints.
Provided datasets ship 10 mindmap-formatted demos for storage reasons;
regenerate the full 200/1000/250 with the upstream
data-generation docs.
Paper: https://arxiv.org/abs/2509.20297. Codebase:
https://github.com/nvidia-isaac/nvblox_mindmap.
Robotics — NuRec / Sim-Ready scenes
PhysicalAI-Robotics-NuRec
Indoor 3DGUT scenes for IsaacSim AMR simulation.
PhysicalAI-NuRec-PPISP
Photometric-variation benchmark for radiance-field methods.
Robotics — Healthcare
PhysicalAI-Robotics-Open-H-Embodiment
Surgical / ultrasound robotics multi-embodiment corpus.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Open-H-Embodiment |
| Size |
4.5 TB, 750 h, 120,000 trajectories |
| Format |
LeRobot v2.1 — MP4 video + Parquet kinematics + JSONL manifests |
| Contributors |
30+ orgs (JHU, Stanford, UCSD, UCB, Vanderbilt, TUM, MBZUAI, …) |
| Purpose |
Healthcare autonomy + world-foundation-model training (used by nvidia/GR00T-H and nvidia/Cosmos-H-Surgical-Simulator) |
| License |
CC-BY-4.0 |
Robotics — Grasping
PhysicalAI-Robotics-GraspGen
Sim2Real grasping at scale.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GraspGen |
| Size |
21.6 GB |
| Coverage |
57 M+ grasps over 8515 Objaverse-XL (LVIS) objects |
| Grippers |
Franka Panda, Robotiq-2f-140, suction (30 mm radius) |
| Format |
WebDataset shards (grasp_data/{franka,robotiq2f140,suction}/shard_{0-7}.tar) + train/valid splits |
| License |
CC-BY-4.0; commercial OK |
| Models |
adithyamurali/GraspGenModels |
| Tip |
Objaverse meshes are NOT included — pull separately via the bundled download_objaverse.py |
Robotics — Physical / material properties
VoMP = Volumetric Mechanical Properties.
PhysicalAI-Robotics-PhysicalAssets-VoMP
PhysicalAI-Robotics-PhysicalAssets-VoMP-Eval
Spatial Intelligence + SimReady scenes
PhysicalAI-SimReady-Warehouse-01
OpenUSD warehouse scene + asset library.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-SimReady-Warehouse-01 |
| Size |
14.4 GB, 753 USD assets + master scene (physical_ai_simready_warehouse_01.usd) |
| Asset class |
Prop / Assembly / Scenario; 1.1.0 adds physically-graspable subset |
| Metadata |
CSV catalogue with WikiData Q-codes, mass (kg), thumbnails |
| Target |
Isaac Sim 4.x (Properties → disable Instanceable → Physics → Rigid Body to make assets dynamic) |
| License |
CC-BY-4.0 |
| Use with |
Upstream consumers without an in-repo skill: Isaac Sim / Isaac Lab, Omniverse SDG. |
PhysicalAI-DigitalCousin-Assets
Companion-asset library for the GR1 tabletop sim environments.
PhysicalAI-SmartSpaces
Multi-camera tracking + 3D box benchmark (AI City Challenge).
PhysicalAI-Spatial-Intelligence-Warehouse
VLM-style spatial QA in warehouses.
| Field |
Value |
| HF |
https://huggingface.co/datasets/nvidia/PhysicalAI-Spatial-Intelligence-Warehouse |
| Size |
261 GB |
| QA pairs |
499k train + 19k test + 1.9k val (categories: left_right, multi_choice_question, distance in metres, count) |
| Imagery |
~95k RGB-D pairs, RLE object masks (pycoco), LLaVA-style conversations |
| Annotation |
Rule-based + Llama-3.1-70B-Instruct refinement |
| Gating |
Contact-info gate (no separate license) |
| License |
CC-BY-4.0 |
| Format |
train.json / val.json / test.json + chunked TAR-GZs of images + depths |
PhysicalAI-SpatialIntelligence-Lyra-SDG
GEN3C-derived multi-view 3D + 4D training data for nv-tlabs/lyra.
(See also) PhysicalAI-NuRec-PPISP
Listed in § 7 but is also a
spatial-intelligence radiance-field benchmark.
License decision tree
| License |
Commercial OK? |
Reproducible? |
Datasets |
| CC-BY-4.0 |
✅ (with attribution) |
✅ (must keep notice) |
most — Cosmos-Drive-Dreams, GraspGen, all Manipulation-* (except where noted), GR00T-Teleop-G1, GR00T-Tuned-Tasks, GR00T-GR1, GR00T-Eval, GR00T-X-Embodiment-Sim, Robotics-NuRec, NuRec-PPISP, Open-H-Embodiment, SmartSpaces (CC-BY-4.0 implied via card), Spatial-Intelligence-Warehouse, SpatialIntelligence-Lyra-SDG, SimReady-Warehouse-01, VoMP / VoMP-Eval, Manipulation-Augmented |
| CC-BY-NC-4.0 (non-commercial) |
❌ |
✅ research |
GR00T-Teleop-Sim, DigitalCousin-Assets, all 4 mindmap datasets |
| NVIDIA AV Dataset License Agreement (gated, AV-only purpose, 12-month expiry) |
✅ ONLY for AV / ADAS development on NVIDIA tech |
❌ — no derivative works, no redistribution, no biometric / re-id / surveillance use |
PhysicalAI-Autonomous-Vehicles, …-NCore, …-NuRec |
For internal NVIDIA use, the auto-derivable rule of thumb:
- If
Robotics-Manipulation-* and not mindmap / DigitalCousin-Assets → CC-BY-4.0 commercial OK.
- If
mindmap-* → research only (NC).
- If
Autonomous-Vehicles* → AV License only, gated.
- Everything else → check the card.
Cross-skill usage map
Sibling skills in this hub are linked by relative path; upstream
projects without an in-repo skill are linked by URL.
| Dataset |
In-repo sibling skill(s) |
Upstream consumers (no in-repo skill) |
PhysicalAI-Autonomous-Vehicles |
../ncore/SKILL.md |
NVlabs/alpamayo-1.5, NVlabs/alpasim, CARLA |
…-NCore |
../ncore/SKILL.md, ../asset-harvester/SKILL.md |
— |
…-NuRec |
../nre/SKILL.md, ../nurec-fixer/SKILL.md |
CARLA (NuRec integration 0.9.16+) |
…-Cosmos-Drive-Dreams |
— |
nvidia/Cosmos-Transfer1, nvidia/Cosmos-Predict, NVlabs/alpasim, CARLA |
…-Cosmos-Synthetic |
— |
(pointer to Cosmos-Drive-Dreams) |
Robotics-Manipulation-Kitchen / -Objects / -SingleArm |
— |
Isaac Sim / Isaac Lab |
Robotics-Manipulation-Augmented |
— |
nvidia/Cosmos-Transfer1 (Transfer1 path), Isaac Sim / Isaac Lab |
Robotics-Manipulation-Kitchen-Demos + -Kitchen-MJCF |
— |
MuJoCo direct; Isaac Sim for MJCF→USD |
Robotics-GR00T-X-Embodiment-Sim / -Tuned-Tasks |
— |
NVIDIA/Isaac-GR00T, Isaac Sim |
Robotics-GR00T-Teleop-G1 / -Sim / -GR1 (DreamDojo) |
— |
NVIDIA/Isaac-GR00T |
Robotics-GR00T-GR1 (DreamGen ref) / -Eval |
— |
reference assets only |
Robotics-mindmap-* |
— |
nvidia-isaac/nvblox_mindmap, Isaac Lab |
Robotics-NuRec |
../nre/SKILL.md |
Isaac Sim 5.1, MobilityGen |
NuRec-PPISP |
../nre/SKILL.md (3DGRUT / GSplat benchmarking) |
— |
Robotics-Open-H-Embodiment |
— |
nvidia/GR00T-H, nvidia/Cosmos-H-Surgical-Simulator |
Robotics-GraspGen |
— |
Ships its own visualisation scripts; Isaac Sim for replay |
Robotics-PhysicalAssets-VoMP / -Eval |
— |
VoMP model |
SimReady-Warehouse-01 |
— |
Isaac Sim 4.x, Omniverse SDG |
DigitalCousin-Assets |
— |
Isaac Sim |
SmartSpaces |
— |
AI City Challenge eval server |
Spatial-Intelligence-Warehouse |
— |
Warehouse VLM benchmark (no upstream skill) |
SpatialIntelligence-Lyra-SDG |
— |
nv-tlabs/lyra, nvidia/Cosmos-Predict (GEN3C lineage) |
Verify
After downloading any dataset:
ls <local-dir>
du -sh <local-dir> # confirm size matches the table above (within 10 %)
# For LeRobot v2.x:
python -c "from lerobot.common.datasets.lerobot_dataset import LeRobotDataset; \
d = LeRobotDataset('<local-dir>'); print(d.meta.info)"
# For NCore V4 (.zarr.itar):
ncore_vis <local-dir>/clips/<uuid>/pai_<uuid>.json # via ../ncore/SKILL.md
# For USDZ scenes:
# load in Isaac Sim 5.1 — File → Open → <scene>.usdz
GREEN when:
- File counts and total size match the dataset card to within ~10 %.
- For gated datasets, the download did not silently terminate at the
license-agreement page (re-
hf auth login if the first chunk is HTML).
- For LeRobot datasets,
meta/info.json parses and the episode count
matches the card.
Troubleshooting
Repo gated. Cannot access … 401 — open the dataset URL in a
browser, click Agree on the license / contact-info form, then retry
with the same token. Tokens don't get auto-refreshed when a new
agreement appears (re-accept after major version bumps).
- First chunk is 5 KB of HTML — same cause as above.
- Download hangs indefinitely on AV (133 TB) — you almost certainly
don't want the whole thing. Use
physical_ai_av to filter
platform_class == 'hyperion_8.1' (default — see
Filtered AV download recipe), plus
any sensor / country / split mask, BEFORE pulling.
- AV clip downloaded but downstream NCore / NuRec / Asset-Harvester
rejects it — double-check
data_collection['platform_class'] for
that clip; only hyperion_8.1 is validated. If it's hyperion_8,
either swap to a hyperion_8.1 clip or accept that the downstream
reconstruction tooling will not work.
- Cosmos-Drive-Dreams 3 TB on a small disk — pass
--file_types synthetic (700 GB) or --file_types hdmap (small) to
the official download.py.
- Lyra-SDG 25 TB out of disk —
hf download --include "tar/static_*" --exclude "tar/dynamic_*" to take just the 3D half (or vice-versa).
- Cosmos-Synthetic looks empty (2.59 kB) — it's a pointer page
redirecting to
Cosmos-Drive-Dreams. Use that.
- mindmap dataset only has 10 demos when the card says 200 / 1000 —
expected; regenerate
…(truncated)
1---2name: physical-ai-datasets3description: Use when the user wants to find, download, or pick a NVIDIA Physical AI dataset on Hugging Face for autonomous-vehicle, robotics, spatial intelligence, manipulation, or neural-reconstruction workflows. Catalog of every dataset under huggingface.co/nvidia with the `PhysicalAI-` prefix, organised by domain (AV, Robotics-Manipulation, Robotics-GR00T, Robotics-mindmap, Robotics-NuRec, Spatial Intelligence, Grasping, Healthcare, Sim-Ready, Material properties), with per-dataset size, format, gating, license, and the downstream sibling skill (`ncore`, `nre`, `asset-harvester`, `nurec-fixer`) or upstream tool (Isaac Sim, CARLA, Isaac-GR00T, Cosmos-*) that consumes it. Do NOT use as a runtime — it routes you elsewhere. Trigger keywords: nvidia physical ai dataset, PhysicalAI- dataset, hf nvidia dataset, NCore dataset, NuRec dataset, GR00T dataset, GraspGen, SimReady, Cosmos-Drive-Dreams, Lyra SDG, Open-H-Embodiment, huggingface-cli download, physical_ai_av, dataset gated, RDS-HQ.4license: CC-BY-4.0 AND Apache-2.05---67# NVIDIA Physical AI Datasets (Hugging Face)89## Purpose1011Help the agent find, evaluate, and download an NVIDIA `PhysicalAI-*`12dataset on Hugging Face that fits the user's downstream task —13autonomous-vehicle reconstruction, robotics manipulation, GR00T14post-training, spatial-intelligence research, grasping, or sim-ready15content — and then hand off to the sibling skill (`ncore`, `nre`,16`asset-harvester`, `nurec-fixer`) or upstream NVIDIA tool that17actually consumes it.1819**Use this skill when:** the user asks "is there an NVIDIA dataset20for X?", "where do I get NCore / NuRec / GR00T sample data?", or is21shopping the Hugging Face NVIDIA org for `PhysicalAI-*` collections.2223**Do NOT use this skill when:**2425- The user already knows the dataset and just wants to run a26 pipeline — jump straight to the consuming skill.27- The user needs a non-NVIDIA dataset (Waymo, nuScenes, KITTI, …) —28 this catalog is NVIDIA-only.29- The user wants to train Cosmos / GR00T / Isaac Sim itself — that's30 the upstream tool's job, not this catalog's.3132## Overview3334Catalog of NVIDIA's open Physical AI dataset family on Hugging Face.35Pick by **task** (Section 2 § lookup table) or **family** (Sections 3–10).36Every entry lists: dataset path, size, format, license, gating, and the37downstream skill in this repo that consumes it.3839> Source of truth: <https://huggingface.co/nvidia> (filter `PhysicalAI-`)40> and the curated [Physical AI collection](https://huggingface.co/collections/nvidia/physical-ai).41> When upstream cards drift, re-check the HF page; this skill mirrors42> the cards as of Apr 2026.4344## Prerequisites4546- HuggingFace account with the **dataset card opened in a browser at47 least once**, and the gating checkbox accepted on every dataset you48 intend to download.49- HuggingFace user access token exported as `HF_TOKEN` (create at50 <https://huggingface.co/settings/tokens>).51- `git`, `git-lfs`, and `huggingface_hub[cli]` on PATH.52- Storage room sized to the dataset you're pulling (see the per-row53 size column; some are < 1 GB, the AV dataset is 133 TB — always54 pre-filter with `--include` or `physical_ai_av`).5556### Verifying secrets safely5758**Always check token presence with `hf auth whoami` or a length-only59shell test; never write ad-hoc bash that interpolates `HF_TOKEN`60values.** The common one-liner6162```bash63# BAD — leaks the secret to the terminal when the variable is set64echo "HF_TOKEN: ${HF_TOKEN:+yes}${HF_TOKEN:-no}"65```6667prints `yes<token-value>` whenever `HF_TOKEN` is set, because68`${VAR:-no}` only falls back to "no" when `VAR` is empty — when set69it expands to `$VAR`. Use one of these instead:7071```bash72hf auth whoami # confirms the token without echoing it73test -n "$HF_TOKEN" && echo "HF_TOKEN: set (${#HF_TOKEN} chars)" || echo "HF_TOKEN: missing"74```7576Rotate any token you suspect was echoed at77<https://huggingface.co/settings/tokens>.7879## Table of Contents80811. [Common download recipe](#common-download-recipe) — HF auth, gating, CLI.822. [Filtered AV download recipe](#filtered-av-download-recipe) — default `hyperion_8.1` filter for `PhysicalAI-Autonomous-Vehicles` raw pulls.833. [Pick a dataset by task](#pick-a-dataset-by-task) — fast lookup table.844. [Autonomous Vehicles](#autonomous-vehicles) — 5 datasets.855. [Robotics — Manipulation](#robotics--manipulation) — 6 datasets.866. [Robotics — GR00T](#robotics--gr00t) — 7 datasets.877. [Robotics — mindmap](#robotics--mindmap) — 4 datasets.888. [Robotics — NuRec / Sim-Ready scenes](#robotics--nurec--sim-ready-scenes) — 2 datasets.899. [Robotics — Healthcare](#robotics--healthcare) — 1 dataset.9010. [Robotics — Grasping](#robotics--grasping) — 1 dataset.9111. [Robotics — Physical / material properties](#robotics--physical--material-properties) — 2 datasets.9212. [Spatial Intelligence + SimReady scenes](#spatial-intelligence--simready-scenes) — 5 datasets.9313. [Community / sample](#community--sample) — 1 dataset.9414. [License decision tree](#license-decision-tree) — what you can do with each.9515. [Cross-skill usage map](#cross-skill-usage-map) — which skill consumes which dataset.9697## Common download recipe9899All NVIDIA Physical AI datasets live on `huggingface.co/datasets/nvidia/...`100and use the same access shape:101102```bash103sudo apt -y install git git-lfs104git lfs install105106uv tool install -U "huggingface_hub[cli]" # or: pip install --upgrade "huggingface_hub[cli]"107hf auth login # paste user access token108```109110The token must:1111121. Have a HF user account that's **logged in** to the dataset page in a browser AT LEAST ONCE.1132. Have **accepted** any license / terms-of-use checkbox the dataset shows114 (re-accept if the dataset has been re-gated — common for AV).115116Three download patterns:117118```bash119# Whole dataset (small / medium)120hf download nvidia/<dataset> --repo-type dataset --local-dir ./<dataset>121122# Sub-folder only (recommended for large multi-task collections)123hf download nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim \124 --repo-type dataset \125 --include "gr1_arms_only.CanSort/**" \126 --local-dir ./gr00t_dataset127128# Sparse-checkout via git-LFS (if you want incremental git-style work)129git clone --filter=blob:none --no-checkout https://huggingface.co/datasets/nvidia/<dataset>130cd <dataset>131git sparse-checkout init --cone132git sparse-checkout set <subfolder>133git checkout main134```135136Special-case downloaders:137138- **PhysicalAI-Autonomous-Vehicles** (133 TB) — use the official Python139 toolkit `pip install physical_ai_av`140 ([NVlabs/physical_ai_av](https://github.com/NVlabs/physical_ai_av))141 to filter by sensor / country / split before downloading; otherwise142 you will pull TBs you don't need.143144 **Default policy: pre-filter to `platform_class == 'hyperion_8.1'`145 before any bulk pull.** The dataset mixes two sensor rigs146 (`hyperion_8` and `hyperion_8.1`) and the entire downstream147 NuRec / NCore / Asset-Harvester chain in this repo is *only*148 validated for `hyperion_8.1`. Roughly half of the 306k clips fall149 outside that platform, so the filter typically cuts the working set150 (and download size) in half.151152 Apply this filter by default in any download script you generate.153 Only skip the filter when the user **explicitly** asks for it (e.g.154 "download all platforms", "include hyperion_8", "don't filter by155 platform") or when they hand you a specific clip UUID — in that156 single-clip case, `download_clip_features(clip_id=...)` is already157 scoped and no platform filter is needed.158159 Canonical filtered recipe (see § [Filtered AV download recipe](#filtered-av-download-recipe)160 below for an end-to-end example):161162 ```python163 from physical_ai_av import PhysicalAIAVDatasetInterface164165 dataset = PhysicalAIAVDatasetInterface()166 dataset.download_metadata()167 dc = dataset.metadata['data_collection']168 hyperion_81_clip_ids = dc[dc['platform_class'] == 'hyperion_8.1'].index.tolist()169 ```170- **PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams** (3 TB) — use the171 upstream `download.py`172 ([nv-tlabs/Cosmos-Drive-Dreams](https://github.com/nv-tlabs/Cosmos-Drive-Dreams/blob/main/scripts/download.py))173 with `--file_types {hdmap,lidar,synthetic}` to select layers.174- **PhysicalAI-SpatialIntelligence-Lyra-SDG** (25 TB) — `hf download175 --local-dir lyra_dataset/tar`; untar each tar yourself.176- **Spatial-Intelligence-Warehouse** — chunked TAR-GZs need a manual177 loop after download (script provided in the upstream card).178179For dataset filtering / preview: NVIDIA's180[Cosmos Dataset Search (CDS)](https://build.nvidia.com/nvidia/cosmos-dataset-search)181lets you query a 41K subset of the AV dataset semantically before182downloading.183184## Filtered AV download recipe185186Always use this recipe (or a derivative of it) when the user asks to187download raw clips from `PhysicalAI-Autonomous-Vehicles`. The188`hyperion_8.1` filter is the **default**; it matches every downstream189skill in this repo (`ncore`, `nre`, `asset-harvester`, `nurec-fixer`).190191When to **skip** the platform filter:1921931. The user explicitly opts out — e.g. "download all platforms",194 "include hyperion_8 too", "ignore platform_class", or asks for a195 dataset-wide statistic. In that case, drop the platform mask and196 warn them that NuRec / NCore tooling will not work on the197 `hyperion_8` clips.1982. The user gave you a **specific clip UUID**. A single-clip199 `download_clip_features(clip_id=...)` is already scoped, and200 filtering by `platform_class` for one clip is pointless.201202Recipe (defaults: filter on; user may layer extra masks like country203or sensor presence on top):204205```python206from physical_ai_av import PhysicalAIAVDatasetInterface207208dataset = PhysicalAIAVDatasetInterface()209210dataset.download_metadata()211dc = dataset.metadata['data_collection']212213clip_mask = dc['platform_class'] == 'hyperion_8.1'214215# Optional extra masks (only add when the user asked for them):216# clip_mask &= dc['country'] == 'US'217# sp = dataset.metadata['feature_presence'] # 26.03+; was 'sensor_presence' in 25.10218# clip_mask &= sp['lidar_top_360fov']219220clip_ids = dc[clip_mask].index.tolist()221print(f"Downloading {len(clip_ids)} hyperion_8.1 clips")222223dataset.download_clip_features(224 clip_id=clip_ids,225 features=["camera_front_wide_120fov", "lidar_top_360fov", "egomotion"],226 max_workers=8,227)228```229230Single-clip fast path (no platform filter — the UUID is already231specific):232233```python234dataset.download_clip_features(235 clip_id="<paste-clip-uuid>",236 features=["camera_front_wide_120fov", "lidar_top_360fov", "egomotion"],237)238```239240Explicit opt-out (only when the user asked for it):241242```python243clip_ids = dc.index.tolist() # NO platform filter — all 306k clips244# WARNING: downstream NuRec / NCore / Asset-Harvester only handle245# the hyperion_8.1 subset.246```247248## Pick a dataset by task249250| Goal | Recommended dataset(s) |251|------|------------------------|252| End-to-end AV training (real, multi-sensor) | `PhysicalAI-Autonomous-Vehicles` (133 TB, 1700 h, 25 countries) |253| AV in NCore V4 format (drop-in for [`ncore`](../ncore/SKILL.md)) | `PhysicalAI-Autonomous-Vehicles-NCore` (~1.1k clips) |254| AV photoreal Sim2Real / weather augmentation | `PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams` (3 TB; 7 weather variants) |255| AV neural reconstructions ready for CARLA / NuRec | `PhysicalAI-Autonomous-Vehicles-NuRec` (918 USDZ scenes) |256| Asset Harvester / 3DGS extraction sample clip | `PhysicalAI-Autonomous-Vehicles-NCore` |257| GR00T post-training, broad coverage | `PhysicalAI-Robotics-GR00T-X-Embodiment-Sim` (1.91 TB, 24 GR1 task families + bimanual + RoboCasa) |258| GR00T fine-tune on industrial tasks | `PhysicalAI-GR00T-Tuned-Tasks` (Nut Pouring, Exhaust Pipe Sorting) |259| GR00T eval images / videos | `PhysicalAI-Robotics-GR00T-Eval`, `PhysicalAI-Robotics-GR00T-GR1` |260| Real humanoid teleop (Unitree G1) | `PhysicalAI-Robotics-GR00T-Teleop-G1` (1000 trajectories) |261| Sim humanoid teleop (Fourier GR1) | `PhysicalAI-Robotics-GR00T-Teleop-Sim` (24 tasks × 1k trajectories) |262| Massive humanoid pretraining (44k h, DreamDojo) | `PhysicalAI-Robotics-GR00T-Teleop-GR1` (74.3 GB) |263| Spatial-memory imitation learning (mindmap) | `PhysicalAI-Robotics-mindmap-{Stick-in-Bin,Drill-in-Box,Cube-Stacking,Mug-in-Drawer}` |264| Robot pick-place in kitchen (bimanual Kinova Gen3) | `PhysicalAI-Robotics-Manipulation-Kitchen`, `-Manipulation-Objects` |265| Robot pick-place tabletop (single Franka) | `PhysicalAI-Robotics-Manipulation-SingleArm` |266| Cosmos-Transfer1 visual-augmented stacking | `PhysicalAI-Robotics-Manipulation-Augmented` |267| Massive teleop in kitchen (Franka + mobile base) | `PhysicalAI-Robotics-Manipulation-Kitchen-Demos` (600 h, 316 tasks, 55k traj) |268| MJCF kitchen objects + fixtures (MuJoCo) | `PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF` |269| Sim-Ready warehouse for IsaacSim | `PhysicalAI-SimReady-Warehouse-01` (753 USD assets) |270| GR1 tabletop digital cousins (assets) | `PhysicalAI-DigitalCousin-Assets` |271| 3DGS / Sim-Ready indoor scenes for AMR sim | `PhysicalAI-Robotics-NuRec` (Nova Carter labs, Zurich offices, hand-held) |272| Multi-cam tracking + 3D box benchmark | `PhysicalAI-SmartSpaces` (AI City Challenge 2024 + 2025) |273| 3D scene QA / VLM training (warehouses) | `PhysicalAI-Spatial-Intelligence-Warehouse` (499k QA pairs) |274| Generative 3D scene reconstruction training | `PhysicalAI-SpatialIntelligence-Lyra-SDG` (25 TB; GEN3C-derived) |275| Radiance-field photometric benchmark | `PhysicalAI-NuRec-PPISP` (8 sequences, +/-2 EV bracketing) |276| Grasping models (Franka, Robotiq-2f-140, suction) | `PhysicalAI-Robotics-GraspGen` (57M grasps, Objaverse-LVIS) |277| Healthcare / surgical robotics autonomy | `PhysicalAI-Robotics-Open-H-Embodiment` (750 h, 4.5 TB, 30+ orgs) |278| Volumetric mechanical / material properties | `PhysicalAI-Robotics-PhysicalAssets-VoMP`, `-VoMP-Eval` |279280## Autonomous Vehicles281282### PhysicalAI-Autonomous-Vehicles283284The flagship real-world AV dataset.285286| Field | Value |287|-------|-------|288| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles> |289| Size | **133 TB** — 306,152 clips × 20 s = **1700 h** |290| Sensors | 7 cameras (1080p @ 30 FPS), top-360 LiDAR (10 Hz, 298k clips), up to 10 radars (160k clips), ego motion, calibration, machine labels |291| Geography | 25 countries, 2500+ cities (US 155k, Germany 44k, …) |292| Format | Per-sensor parquet/mp4 chunks of ~100 clips; UUIDs cross-link sensors |293| License | **NVIDIA AV Dataset License Agreement** (gated; AV-development-only purpose; no biometric / surveillance / re-identification; expires 12 months after download) |294| Toolkit | `pip install physical_ai_av` — direct filtered downloads + format docs. **Default to filtering `metadata['data_collection']['platform_class'] == 'hyperion_8.1'` before any bulk pull** (see [Filtered AV download recipe](#filtered-av-download-recipe)); only skip the filter on explicit user request or when downloading a specific clip UUID. |295| Versions | 26.03 (current; offline-optimized features for 97 % of clips), 25.10 (initial) |296| Subset preview | 41k clips searchable on [Cosmos Dataset Search](https://build.nvidia.com/nvidia/cosmos-dataset-search) |297| Use with | [`../ncore/SKILL.md`](../ncore/SKILL.md) (convert raw clips to NCore V4), [`../asset-harvester/SKILL.md`](../asset-harvester/SKILL.md) (extract per-object Gaussian assets). NuRec workflows are only validated for `platform_class == hyperion_8.1`. Upstream sim/training tools without an in-repo skill: `NVlabs/alpamayo-1.5`, `NVlabs/alpasim`, CARLA. |298299### PhysicalAI-Autonomous-Vehicles-NCore300301Curated NCore V4 subset of the above.302303| Field | Value |304|-------|-------|305| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles-NCore> |306| Size | ~1.1k clips with accurate offline calibration / egomotion / cuboids |307| Format | NCore V4 — `pai_<uuid>.json` + per-sensor `.zarr.itar` files |308| License | NVIDIA AV Dataset License Agreement (gated, same as above) |309| Use with | [`../ncore/SKILL.md`](../ncore/SKILL.md) (drop-in), [`../asset-harvester/SKILL.md`](../asset-harvester/SKILL.md) (sample clip path: `clips/2a6f330-5ab0-4e92-99d4-d19e406952f4/`) |310| Notes | Built via [PAI data converter](https://github.com/NVIDIA/ncore/tree/main/tools/data_converter/pai). Use this BEFORE the full AV dataset for any NCore-driven workflow. |311312### PhysicalAI-Autonomous-Vehicles-NuRec313314Pre-built NuRec dynamic neural reconstructions ready for IsaacSim / CARLA.315316| Field | Value |317|-------|-------|318| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles-NuRec> |319| Size | 918 USDZ scenes, ~20 s each, with surface meshes + front-camera mp4 + `labels.json` (Batch0002+) |320| Reconstruction | 6 cameras (front-wide 120°, front-tele 30°, cross-L/R 120°, rear-L/R 70°) |321| Versions | 26.02 (current), 25.07, 25.05 |322| License | NVIDIA AV Dataset License Agreement (gated) |323| Use with | [`../nre/SKILL.md`](../nre/SKILL.md) (render the USDZs locally or over `serve-grpc`), [`../nurec-fixer/SKILL.md`](../nurec-fixer/SKILL.md) (clean up rendered frames). Upstream consumer without an in-repo skill: CARLA (NuRec integration in 0.9.16+). |324325### PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams326327Cosmos-Transfer-style synthetic + HD-map labels for diverse weather.328329| Field | Value |330|-------|-------|331| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams> |332| Size | 3 TB total (synthetic only ~700 GB) — 5,843 RDS-HQ clips × 2 chunks × 7 weather = 81,802 synthetic videos (121 frames each) |333| Modalities | Cosmos-generated MP4, HDMap (lanes/lanelines/road boundaries/wait lines/crosswalks/markings/poles/lights/signs), LiDAR, vehicle pose, camera intrinsics (ftheta + pinhole), 4D object tracking |334| Cameras | 7 (front-wide/cross-L/cross-R/rear-L/rear-R/rear-tele/front-tele) |335| Weather variants | Foggy / Golden hour / Morning / Night / Rainy / Snowy / Sunny |336| License | **CC-BY-4.0** (commercial OK with attribution) |337| Tooling | `wget … scripts/download.py; python download.py --odir <path> --file_types hdmap,lidar,synthetic` |338| Paper | <https://arxiv.org/abs/2506.09042> |339| Use with | Upstream consumers without an in-repo skill: `nvidia/Cosmos-Transfer1`, `nvidia/Cosmos-Predict`, `NVlabs/alpasim`, CARLA. |340341### PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic342343| Field | Value |344|-------|-------|345| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic> |346| Status | **Pointer / placeholder** — content moved to `PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams`. Use that. (Card is 2.59 kB.) |347348## Robotics — Manipulation349350All in **LeRobot v2.x** format unless noted, generated in IsaacSim with351task-and-motion planning + `scene_synthesizer` procedural scenes +352CuRobo motion generation.353354### PhysicalAI-Robotics-Manipulation-Kitchen355356Bimanual Kinova Gen3 in procedurally-generated kitchens.357358| Field | Value |359|-------|-------|360| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Kitchen> |361| Size | 12 GB total |362| Tasks | open/close × {cabinet, dishwasher, fridge, drawer} = 8 |363| Trajectories | ~874 episodes total (range 72–205 per task) |364| Cameras | 6 × 512² RGB+depth+segmentation (world / external / each wrist / head) |365| License | CC-BY-4.0 |366| Commercial | ✅ |367368### PhysicalAI-Robotics-Manipulation-Objects369370Same kitchen environment, bimanual Kinova; pick / place bench / place cabinet.371372| Field | Value |373|-------|-------|374| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Objects> |375| Size | 4.26 GB |376| Tasks | `pick`, `place_bench`, `place_cabinet` (540 episodes total) |377| License | CC-BY-4.0 (intended R&D only per card) |378| Use with | Upstream Isaac Sim / Isaac Lab (no in-repo skill). |379380### PhysicalAI-Robotics-Manipulation-SingleArm381382Franka Panda tabletop, procedurally generated.383384| Field | Value |385|-------|-------|386| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-SingleArm> |387| Size | 15.3 GB |388| Tasks | `panda-stack-wide`, `panda-stack-platforms`, `panda-stack-platforms-texture`, `panda-open-cabinet-{left,right}`, `panda-open-drawer` (~38k episodes) |389| Modalities | World cam + wrist cam (RGB + depth on the texture/cabinet/drawer subsets) |390| State | 53 D (stack-wide) / 81 D (others) — proprioception + object poses |391| License | CC-BY-4.0; commercial OK |392393### PhysicalAI-Robotics-Manipulation-Augmented394395Mimic-generated Franka cube-stacking, plus Cosmos-Transfer1 visual augmentation.396397| Field | Value |398|-------|-------|399| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Augmented> |400| Size | 77.9 GB |401| Episodes | 1000 mimic + 1000 Cosmos-augmented (table + wrist cams, depth + seg + normals) |402| Trick | 10 human teleops → MimicGen 1k → Cosmos Transfer1 photoreal domain randomization |403| License | CC-BY-4.0; commercial OK |404| Paper | <https://arxiv.org/abs/2503.14492> (Cosmos-Transfer1) |405| Use with | Upstream consumers without an in-repo skill: `nvidia/Cosmos-Transfer1` (legacy Transfer1 workflow), Isaac Sim / Isaac Lab (replay scripts ship in the dataset repo). |406407### PhysicalAI-Robotics-Manipulation-Kitchen-Demos408409Massive human-teleop dataset on Franka + Omron mobile base.410411| Field | Value |412|-------|-------|413| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Kitchen-Demos> |414| Size | 600 h, 55k trajectories, 316 tasks |415| Format | LeRobot v2.x with MuJoCo `extras/` (`model.xml.gz` + raw states) |416| Cameras | left + right agentview + eye-in-hand |417| Tasks | `pretrain/atomic/...` × 100 traj/task (Open*, Close*, PickPlace*, Adjust*, Coffee*, NavigateKitchen, …) |418| Use with | Pair with the MJCF assets dataset below for replay in MuJoCo. |419420### PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF421422The MuJoCo XML assets that back the Kitchen-Demos environment.423424| Field | Value |425|-------|-------|426| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF> |427| Size | 1.32 GB |428| Categories | Objects (~58 categories from kettle to whisk) + Fixtures (12 — blender, coffee machine, dishwasher, electric kettle, fridge, microwave, oven, stand mixer, stove, toaster, toaster oven, cabinet panel) |429| Format | Per-model `model.xml` + visual / collision OBJ + textures, zipped per category |430| Use with | MuJoCo replay of `Manipulation-Kitchen-Demos`. |431432## Robotics — GR00T433434GR00T = NVIDIA's generalist humanoid foundation model line. Most data is435sim-generated for post-training; eval / real-robot supplements are436small.437438### PhysicalAI-Robotics-GR00T-X-Embodiment-Sim439440Largest GR00T post-training corpus.441442| Field | Value |443|-------|-------|444| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim> |445| Size | **1.91 TB** |446| Composition | 9k cross-embodied bimanual (Panda + GR1) + 240k humanoid GR1 tabletop + 24k downsampled + 72k single-Panda RoboCasa + 102 Unitree G1 loco-manipulation = ~345k trajectories |447| Used by | `nvidia/GR00T-N1.5-3B`, `GR00T-N1.6-3B`, `GR00T-N1.6-bridge`, `GR00T-N1.6-G1-PnPAppleToPlate`, `GR00T-N1.6-DROID`, `GR00T-N1.6-fractal` |448| Download tip | Always pass `--include "<task>/**"` — full clone is 1.91 TB |449450### PhysicalAI-GR00T-Tuned-Tasks451452Two industrial post-training task families.453454| Field | Value |455|-------|-------|456| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-GR00T-Tuned-Tasks> |457| Size | 26.5 GB |458| Tasks | Exhaust-Pipe-Sorting (1000), Nut-Pouring (1000) |459| Format | HDF5 + GR00T-LeRobot, 256² first-person RGB, 26-DoF state/action, 20 Hz |460| License | CC-BY-4.0; commercial OK |461| Models | `nvidia/GR00T-N1-2B-tuned-Nut-Pouring-task`, `…-Exhaust-Pipe-Sorting-task` |462463### PhysicalAI-Robotics-GR00T-Teleop-G1464465Real-robot Unitree G1 fruit pick-and-place.466467| Field | Value |468|-------|-------|469| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-G1> |470| Size | 534 MB |471| Trajectories | 1000 real teleop, Unitree G1 upper body + Tri-finger hands + RealSense |472| Tasks | Pick {apple, pear, grapes, starfruit} → basket |473| Format | MP4 + HDF5 |474| License | CC-BY-4.0; commercial OK |475| Use with | `Isaac-GR00T` finetune docs (`getting_started/3_0_new_embodiment_finetuning.md`) |476477### PhysicalAI-Robotics-GR00T-Teleop-Sim478479Simulated GR1 tabletop teleop.480481| Field | Value |482|-------|-------|483| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-Sim> |484| Size | 55.4 GB (39 GB LeRobot + 14 GB HDF5) |485| Trajectories | 24 tasks × 1000 each |486| License | **CC-BY-NC-4.0** (non-commercial) — different from G1 above |487| Format | HDF5 + LeRobot |488489### PhysicalAI-Robotics-GR00T-Teleop-GR1490491DreamDojo pretraining corpus — large-scale human egocentric video.492493| Field | Value |494|-------|-------|495| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-GR1> |496| Size | 74.3 GB |497| Coverage | 44k hours of human egocentric data (per project page) |498| Project | <https://dreamdojo-world.github.io/> + <https://github.com/NVIDIA/DreamDojo> |499| Paper | <https://arxiv.org/abs/2602.06949> |500501### PhysicalAI-Robotics-GR00T-GR1502503Lab-recorded GR1-T2 third-person video.504505| Field | Value |506|-------|-------|507| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-GR1> |508| Size | 142 MB |509| Records | 92 MP4 videos (Fourier GR1-T2) |510| Use | DreamGen training reference |511| License | CC-BY-4.0; commercial OK |512513### PhysicalAI-Robotics-GR00T-Eval514515GR00T eval initial-state frames.516517| Field | Value |518|-------|-------|519| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Eval> |520| Size | 180 MB |521| Records | 123 PNG frames (GR1-T2 robot's first-person view) + per-frame TXT |522| License | CC-BY-4.0 |523524## Robotics — mindmap525526Spatial-memory benchmark from `nvidia-isaac/nvblox_mindmap`. Each527dataset is one task with the same multimodal layout (RGB-D + camera528intrinsics/poses + nvblox vertex features in `.zst` + robot state).529**All four are CC-BY-NC-4.0** (research only). Models trained:530[`nvidia/PhysicalAI-Robotics-mindmap-Checkpoints`](https://huggingface.co/nvidia/PhysicalAI-Robotics-mindmap-Checkpoints).531532| Dataset | Robot | Teleop tool | Demos provided | Total mimic-generated | Storage |533|---------|-------|-------------|----------------|------------------------|---------|534| [`PhysicalAI-Robotics-mindmap-GR1-Stick-in-Bin`](https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-mindmap-GR1-Stick-in-Bin) | Fourier GR1 | Apple Vision Pro | 10 (`mindmap` fmt) + HDF5 | 200 (from 20 human teleops) | 103 GB |535| [`PhysicalAI-Robotics-mindmap-GR1-Drill-in-Box`](https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-mindmap-GR1-Drill-in-Box) | Fourier GR1 | Apple Vision Pro | 10 + HDF5 | 200 (from 20 human teleops) | 53.7 GB |536| [`PhysicalAI-Robotics-mindmap-Franka-Cube-Stacking`](https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-mindmap-Franka-Cube-Stacking) | Franka | SpaceMouse | 10 + HDF5 | 1000 (from 10 human teleops) | 6.12 GB |537| [`PhysicalAI-Robotics-mindmap-Franka-Mug-in-Drawer`](https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-mindmap-Franka-Mug-in-Drawer) | Franka | SpaceMouse | 10 + HDF5 | 250 (from 15 human teleops) | 34.5 GB |538539> Provided datasets ship 10 mindmap-formatted demos for storage reasons;540> regenerate the full 200/1000/250 with the upstream541> [data-generation docs](https://nvidia-isaac.github.io/nvblox_mindmap/pages/data_generation.html).542543Paper: <https://arxiv.org/abs/2509.20297>. Codebase:544<https://github.com/nvidia-isaac/nvblox_mindmap>.545546## Robotics — NuRec / Sim-Ready scenes547548### PhysicalAI-Robotics-NuRec549550Indoor 3DGUT scenes for IsaacSim AMR simulation.551552| Field | Value |553|-------|-------|554| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-NuRec> |555| Size | 62.9 GB |556| Scenes | Nova-Carter (galileo, cafe, wormhole) — stereo, with mesh + occupancy; Zurich offices (lounge, fourth-floor iphone) — mono, no mesh; Endeavor hand-held (andoria, livingroom, wormhole) — stereo with mesh |557| Format | USDZ (3DGUT + mesh + occupancy) loadable in **Isaac Sim 5.1** |558| Workflows | [Stereo NuRec (Isaac ROS + cuSFM + FoundationStereo + nvblox + 3DGURT)](https://docs.nvidia.com/nurec/robotics/neural_reconstruction_stereo.html) for Carter; [Mono NuRec (COLMAP + 3DGURT)](https://docs.nvidia.com/nurec/robotics/neural_reconstruction_mono.html) for Zurich |559| Gating | Contact-info gate (no separate license) |560| License | CC-BY-4.0 |561| Use with | [`../nre/SKILL.md`](../nre/SKILL.md) to retrain reconstructions; upstream Isaac Sim 5.1 (no in-repo skill) for AMR simulation; pair with [`MobilityGen`](https://github.com/NVlabs/MobilityGen) for AMR data generation. |562563### PhysicalAI-NuRec-PPISP564565Photometric-variation benchmark for radiance-field methods.566567| Field | Value |568|-------|-------|569| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-NuRec-PPISP> |570| Size | 15.2 GB (8.1 GB COLMAP + 6.2 GB NCore V4) |571| Captures | 4 outdoor scenes × 3 cameras (Nikon Z7, OM-1 II, iPhone 13 Pro) = 8 sequences (~2600 photos), `+/-2 EV` exposure bracketing |572| Variants | Standard (full bracket) + auto (re-processed with auto-exposure / WB) |573| License | CC-BY-4.0; commercial OK |574| Use with | 3DGRUT / GSplat benchmarking via [`../nre/SKILL.md`](../nre/SKILL.md) (`eval-rendering-metrics`), [`../asset-harvester/SKILL.md`](../asset-harvester/SKILL.md). |575576## Robotics — Healthcare577578### PhysicalAI-Robotics-Open-H-Embodiment579580Surgical / ultrasound robotics multi-embodiment corpus.581582| Field | Value |583|-------|-------|584| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Open-H-Embodiment> |585| Size | 4.5 TB, 750 h, 120,000 trajectories |586| Format | LeRobot v2.1 — MP4 video + Parquet kinematics + JSONL manifests |587| Contributors | 30+ orgs (JHU, Stanford, UCSD, UCB, Vanderbilt, TUM, MBZUAI, …) |588| Purpose | Healthcare autonomy + world-foundation-model training (used by `nvidia/GR00T-H` and `nvidia/Cosmos-H-Surgical-Simulator`) |589| License | CC-BY-4.0 |590591## Robotics — Grasping592593### PhysicalAI-Robotics-GraspGen594595Sim2Real grasping at scale.596597| Field | Value |598|-------|-------|599| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GraspGen> |600| Size | 21.6 GB |601| Coverage | **57 M+ grasps** over 8515 Objaverse-XL (LVIS) objects |602| Grippers | Franka Panda, Robotiq-2f-140, suction (30 mm radius) |603| Format | WebDataset shards (`grasp_data/{franka,robotiq2f140,suction}/shard_{0-7}.tar`) + train/valid splits |604| License | CC-BY-4.0; commercial OK |605| Models | [`adithyamurali/GraspGenModels`](https://huggingface.co/adithyamurali/GraspGenModels) |606| Tip | Objaverse meshes are **NOT** included — pull separately via the bundled `download_objaverse.py` |607608## Robotics — Physical / material properties609610VoMP = Volumetric Mechanical Properties.611612### PhysicalAI-Robotics-PhysicalAssets-VoMP613614| Field | Value |615|-------|-------|616| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-PhysicalAssets-VoMP> |617| Size | 65.9 GB on-disk (full data nominally 125 GB pre-compression) |618| Records | 1664 objects, 37,337,952 voxels, multi-view renders + VLM material annotations |619| License | CC-BY-4.0 |620621### PhysicalAI-Robotics-PhysicalAssets-VoMP-Eval622623| Field | Value |624|-------|-------|625| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-PhysicalAssets-VoMP-Eval> |626| Size | 8.41 GB on-disk (full eval data nominally 125 GB pre-compression) |627| Use | Held-out eval split for the VoMP model |628| License | CC-BY-4.0 |629630## Spatial Intelligence + SimReady scenes631632### PhysicalAI-SimReady-Warehouse-01633634OpenUSD warehouse scene + asset library.635636| Field | Value |637|-------|-------|638| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-SimReady-Warehouse-01> |639| Size | 14.4 GB, 753 USD assets + master scene (`physical_ai_simready_warehouse_01.usd`) |640| Asset class | Prop / Assembly / Scenario; 1.1.0 adds physically-graspable subset |641| Metadata | CSV catalogue with WikiData Q-codes, mass (kg), thumbnails |642| Target | **Isaac Sim 4.x** (Properties → disable Instanceable → Physics → Rigid Body to make assets dynamic) |643| License | CC-BY-4.0 |644| Use with | Upstream consumers without an in-repo skill: Isaac Sim / Isaac Lab, Omniverse SDG. |645646### PhysicalAI-DigitalCousin-Assets647648Companion-asset library for the GR1 tabletop sim environments.649650| Field | Value |651|-------|-------|652| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-DigitalCousin-Assets> |653| Size | 270 MB |654| Content | 3D meshes, textures, metadata for tabletop objects (mug, bottle, bowl, container, …) used by GR1 sim tasks |655| License | **CC-BY-NC-4.0** (non-commercial) |656657### PhysicalAI-SmartSpaces658659Multi-camera tracking + 3D box benchmark (AI City Challenge).660661| Field | Value |662|-------|-------|663| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-SmartSpaces> |664| Size | 3.53 TB total (216 GB MTMC_Tracking_2024 + 3.31 TB MTMC_Tracking_2025) |665| 2024 | 90 scenes, 212 h, 953 cameras — Person-only, 2D boxes + multi-cam IDs (52M / 135M) |666| 2025 | 23 scenes, 42 h, 504 cameras — Person/Forklift/NovaCarter/Transporter/FourierGR1T2/AgilityDigit, 3D boxes + depth maps (8.9M / 73M) |667| Splits | Warehouse (train/val/test) + Lab (val) + Hospital (val) + 4 test scenes added 2025-05-28 |668| Eval | <https://eval.aicitychallenge.org/aicity2024> + <https://eval.aicitychallenge.org/aicity2025>; 3D-bbox HOTA metric for 2025 |669| Paper | <https://arxiv.org/abs/2412.00692> (MCBLT) |670671### PhysicalAI-Spatial-Intelligence-Warehouse672673VLM-style spatial QA in warehouses.674675| Field | Value |676|-------|-------|677| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-Spatial-Intelligence-Warehouse> |678| Size | 261 GB |679| QA pairs | 499k train + 19k test + 1.9k val (categories: `left_right`, `multi_choice_question`, `distance` in metres, `count`) |680| Imagery | ~95k RGB-D pairs, RLE object masks (pycoco), LLaVA-style conversations |681| Annotation | Rule-based + Llama-3.1-70B-Instruct refinement |682| Gating | Contact-info gate (no separate license) |683| License | CC-BY-4.0 |684| Format | `train.json` / `val.json` / `test.json` + chunked TAR-GZs of images + depths |685686### PhysicalAI-SpatialIntelligence-Lyra-SDG687688GEN3C-derived multi-view 3D + 4D training data for `nv-tlabs/lyra`.689690| Field | Value |691|-------|-------|692| HF | <https://huggingface.co/datasets/nvidia/PhysicalAI-SpatialIntelligence-Lyra-SDG> |693| Size | **25 TB** |694| Composition | 59,031 multi-view 3D examples (354,186 videos) + 7,378 4D examples (44,268 videos), 6 trajectories per source |695| Modalities | RGB MP4 + camera pose `.npz` + depth zip |696| License | CC-BY-4.0 |697| Paper | <https://arxiv.org/abs/2509.19296> (Lyra) |698| Pair with | [`nvidia/Lyra-Testing-Example`](https://huggingface.co/datasets/nvidia/Lyra-Testing-Example) for inference; [`nv-tlabs/lyra`](https://github.com/nv-tlabs/lyra) for training |699700### (See also) PhysicalAI-NuRec-PPISP701702Listed in [§ 7](#robotics--nurec--sim-ready-scenes) but is also a703spatial-intelligence radiance-field benchmark.704705## License decision tree706707| License | Commercial OK? | Reproducible? | Datasets |708|---------|----------------|----------------|----------|709| **CC-BY-4.0** | ✅ (with attribution) | ✅ (must keep notice) | most — Cosmos-Drive-Dreams, GraspGen, all Manipulation-* (except where noted), GR00T-Teleop-G1, GR00T-Tuned-Tasks, GR00T-GR1, GR00T-Eval, GR00T-X-Embodiment-Sim, Robotics-NuRec, NuRec-PPISP, Open-H-Embodiment, SmartSpaces (CC-BY-4.0 implied via card), Spatial-Intelligence-Warehouse, SpatialIntelligence-Lyra-SDG, SimReady-Warehouse-01, VoMP / VoMP-Eval, Manipulation-Augmented |710| **CC-BY-NC-4.0** (non-commercial) | ❌ | ✅ research | GR00T-Teleop-Sim, DigitalCousin-Assets, **all 4 mindmap** datasets |711| **NVIDIA AV Dataset License Agreement** (gated, AV-only purpose, 12-month expiry) | ✅ ONLY for AV / ADAS development on NVIDIA tech | ❌ — no derivative works, no redistribution, no biometric / re-id / surveillance use | `PhysicalAI-Autonomous-Vehicles`, `…-NCore`, `…-NuRec` |712713For internal NVIDIA use, the auto-derivable rule of thumb:7147151. If `Robotics-Manipulation-*` and **not** mindmap / DigitalCousin-Assets → CC-BY-4.0 commercial OK.7162. If `mindmap-*` → research only (NC).7173. If `Autonomous-Vehicles*` → AV License only, gated.7184. Everything else → check the card.719720## Cross-skill usage map721722Sibling skills in this hub are linked by relative path; upstream723projects without an in-repo skill are linked by URL.724725| Dataset | In-repo sibling skill(s) | Upstream consumers (no in-repo skill) |726|---------|--------------------------|---------------------------------------|727| `PhysicalAI-Autonomous-Vehicles` | [`../ncore/SKILL.md`](../ncore/SKILL.md) | `NVlabs/alpamayo-1.5`, `NVlabs/alpasim`, CARLA |728| `…-NCore` | [`../ncore/SKILL.md`](../ncore/SKILL.md), [`../asset-harvester/SKILL.md`](../asset-harvester/SKILL.md) | — |729| `…-NuRec` | [`../nre/SKILL.md`](../nre/SKILL.md), [`../nurec-fixer/SKILL.md`](../nurec-fixer/SKILL.md) | CARLA (NuRec integration 0.9.16+) |730| `…-Cosmos-Drive-Dreams` | — | `nvidia/Cosmos-Transfer1`, `nvidia/Cosmos-Predict`, `NVlabs/alpasim`, CARLA |731| `…-Cosmos-Synthetic` | — | (pointer to Cosmos-Drive-Dreams) |732| `Robotics-Manipulation-Kitchen` / `-Objects` / `-SingleArm` | — | Isaac Sim / Isaac Lab |733| `Robotics-Manipulation-Augmented` | — | `nvidia/Cosmos-Transfer1` (Transfer1 path), Isaac Sim / Isaac Lab |734| `Robotics-Manipulation-Kitchen-Demos` + `-Kitchen-MJCF` | — | MuJoCo direct; Isaac Sim for MJCF→USD |735| `Robotics-GR00T-X-Embodiment-Sim` / `-Tuned-Tasks` | — | [`NVIDIA/Isaac-GR00T`](https://github.com/NVIDIA/Isaac-GR00T), Isaac Sim |736| `Robotics-GR00T-Teleop-G1` / `-Sim` / `-GR1` (DreamDojo) | — | [`NVIDIA/Isaac-GR00T`](https://github.com/NVIDIA/Isaac-GR00T) |737| `Robotics-GR00T-GR1` (DreamGen ref) / `-Eval` | — | reference assets only |738| `Robotics-mindmap-*` | — | [`nvidia-isaac/nvblox_mindmap`](https://github.com/nvidia-isaac/nvblox_mindmap), Isaac Lab |739| `Robotics-NuRec` | [`../nre/SKILL.md`](../nre/SKILL.md) | Isaac Sim 5.1, [`MobilityGen`](https://github.com/NVlabs/MobilityGen) |740| `NuRec-PPISP` | [`../nre/SKILL.md`](../nre/SKILL.md) (3DGRUT / GSplat benchmarking) | — |741| `Robotics-Open-H-Embodiment` | — | `nvidia/GR00T-H`, `nvidia/Cosmos-H-Surgical-Simulator` |742| `Robotics-GraspGen` | — | Ships its own visualisation scripts; Isaac Sim for replay |743| `Robotics-PhysicalAssets-VoMP` / `-Eval` | — | VoMP model |744| `SimReady-Warehouse-01` | — | Isaac Sim 4.x, Omniverse SDG |745| `DigitalCousin-Assets` | — | Isaac Sim |746| `SmartSpaces` | — | AI City Challenge eval server |747| `Spatial-Intelligence-Warehouse` | — | Warehouse VLM benchmark (no upstream skill) |748| `SpatialIntelligence-Lyra-SDG` | — | [`nv-tlabs/lyra`](https://github.com/nv-tlabs/lyra), `nvidia/Cosmos-Predict` (GEN3C lineage) |749750## Verify751752After downloading any dataset:753754```bash755ls <local-dir>756du -sh <local-dir> # confirm size matches the table above (within 10 %)757758# For LeRobot v2.x:759python -c "from lerobot.common.datasets.lerobot_dataset import LeRobotDataset; \760 d = LeRobotDataset('<local-dir>'); print(d.meta.info)"761762# For NCore V4 (.zarr.itar):763ncore_vis <local-dir>/clips/<uuid>/pai_<uuid>.json # via ../ncore/SKILL.md764765# For USDZ scenes:766# load in Isaac Sim 5.1 — File → Open → <scene>.usdz767```768769GREEN when:770771- File counts and total size match the dataset card to within ~10 %.772- For gated datasets, the download did not silently terminate at the773 license-agreement page (re-`hf auth login` if the first chunk is HTML).774- For LeRobot datasets, `meta/info.json` parses and the episode count775 matches the card.776777## Troubleshooting778779- **`Repo gated. Cannot access … 401`** — open the dataset URL in a780 browser, click *Agree* on the license / contact-info form, **then** retry781 with the same token. Tokens don't get auto-refreshed when a new782 agreement appears (re-accept after major version bumps).783- **First chunk is 5 KB of HTML** — same cause as above.784- **Download hangs indefinitely on AV (133 TB)** — you almost certainly785 don't want the whole thing. Use `physical_ai_av` to filter786 `platform_class == 'hyperion_8.1'` (default — see787 [Filtered AV download recipe](#filtered-av-download-recipe)), plus788 any sensor / country / split mask, BEFORE pulling.789- **AV clip downloaded but downstream NCore / NuRec / Asset-Harvester790 rejects it** — double-check `data_collection['platform_class']` for791 that clip; only `hyperion_8.1` is validated. If it's `hyperion_8`,792 either swap to a `hyperion_8.1` clip or accept that the downstream793 reconstruction tooling will not work.794- **Cosmos-Drive-Dreams 3 TB on a small disk** — pass795 `--file_types synthetic` (700 GB) or `--file_types hdmap` (small) to796 the official `download.py`.797- **Lyra-SDG 25 TB out of disk** — `hf download --include "tar/static_*"798 --exclude "tar/dynamic_*"` to take just the 3D half (or vice-versa).799- **Cosmos-Synthetic looks empty (2.59 kB)** — it's a pointer page800 redirecting to `Cosmos-Drive-Dreams`. Use that.801- **mindmap dataset only has 10 demos when the card says 200 / 1000** —802 expected; regenerate 803804…(truncated)