physical-ai-datasets

von nvidia

Use when the user wants to find, download, or pick a NVIDIA Physical AI dataset on Hugging Face for autonomous-vehicle, robotics, spatial intelligence,…

npx skills add https://github.com/nvidia/nurec-skills --skill physical-ai-datasets

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

  1. Common download recipe — HF auth, gating, CLI.
  2. Filtered AV download recipe — default hyperion_8.1 filter for PhysicalAI-Autonomous-Vehicles raw pulls.
  3. Pick a dataset by task — fast lookup table.
  4. Autonomous Vehicles — 5 datasets.
  5. Robotics — Manipulation — 6 datasets.
  6. Robotics — GR00T — 7 datasets.
  7. Robotics — mindmap — 4 datasets.
  8. Robotics — NuRec / Sim-Ready scenes — 2 datasets.
  9. Robotics — Healthcare — 1 dataset.
  10. Robotics — Grasping — 1 dataset.
  11. Robotics — Physical / material properties — 2 datasets.
  12. Spatial Intelligence + SimReady scenes — 5 datasets.
  13. Community / sample — 1 dataset.
  14. License decision tree — what you can do with each.
  15. 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:

  1. Have a HF user account that's logged in to the dataset page in a browser AT LEAST ONCE.
  2. 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:

  1. 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.
  2. 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

GoalRecommended 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 augmentationPhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams (3 TB; 7 weather variants)
AV neural reconstructions ready for CARLA / NuRecPhysicalAI-Autonomous-Vehicles-NuRec (918 USDZ scenes)
Asset Harvester / 3DGS extraction sample clipPhysicalAI-Autonomous-Vehicles-NCore
GR00T post-training, broad coveragePhysicalAI-Robotics-GR00T-X-Embodiment-Sim (1.91 TB, 24 GR1 task families + bimanual + RoboCasa)
GR00T fine-tune on industrial tasksPhysicalAI-GR00T-Tuned-Tasks (Nut Pouring, Exhaust Pipe Sorting)
GR00T eval images / videosPhysicalAI-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 stackingPhysicalAI-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 IsaacSimPhysicalAI-SimReady-Warehouse-01 (753 USD assets)
GR1 tabletop digital cousins (assets)PhysicalAI-DigitalCousin-Assets
3DGS / Sim-Ready indoor scenes for AMR simPhysicalAI-Robotics-NuRec (Nova Carter labs, Zurich offices, hand-held)
Multi-cam tracking + 3D box benchmarkPhysicalAI-SmartSpaces (AI City Challenge 2024 + 2025)
3D scene QA / VLM training (warehouses)PhysicalAI-Spatial-Intelligence-Warehouse (499k QA pairs)
Generative 3D scene reconstruction trainingPhysicalAI-SpatialIntelligence-Lyra-SDG (25 TB; GEN3C-derived)
Radiance-field photometric benchmarkPhysicalAI-NuRec-PPISP (8 sequences, +/-2 EV bracketing)
Grasping models (Franka, Robotiq-2f-140, suction)PhysicalAI-Robotics-GraspGen (57M grasps, Objaverse-LVIS)
Healthcare / surgical robotics autonomyPhysicalAI-Robotics-Open-H-Embodiment (750 h, 4.5 TB, 30+ orgs)
Volumetric mechanical / material propertiesPhysicalAI-Robotics-PhysicalAssets-VoMP, -VoMP-Eval

Autonomous Vehicles

PhysicalAI-Autonomous-Vehicles

The flagship real-world AV dataset.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles
Size133 TB — 306,152 clips × 20 s = 1700 h
Sensors7 cameras (1080p @ 30 FPS), top-360 LiDAR (10 Hz, 298k clips), up to 10 radars (160k clips), ego motion, calibration, machine labels
Geography25 countries, 2500+ cities (US 155k, Germany 44k, …)
FormatPer-sensor parquet/mp4 chunks of ~100 clips; UUIDs cross-link sensors
LicenseNVIDIA AV Dataset License Agreement (gated; AV-development-only purpose; no biometric / surveillance / re-identification; expires 12 months after download)
Toolkitpip 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.
Versions26.03 (current; offline-optimized features for 97 % of clips), 25.10 (initial)
Subset preview41k 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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles-NCore
Size~1.1k clips with accurate offline calibration / egomotion / cuboids
FormatNCore V4 — pai_<uuid>.json + per-sensor .zarr.itar files
LicenseNVIDIA AV Dataset License Agreement (gated, same as above)
Use with../ncore/SKILL.md (drop-in), ../asset-harvester/SKILL.md (sample clip path: clips/2a6f330-5ab0-4e92-99d4-d19e406952f4/)
NotesBuilt via PAI data converter. Use this BEFORE the full AV dataset for any NCore-driven workflow.

PhysicalAI-Autonomous-Vehicles-NuRec

Pre-built NuRec dynamic neural reconstructions ready for IsaacSim / CARLA.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicles-NuRec
Size918 USDZ scenes, ~20 s each, with surface meshes + front-camera mp4 + labels.json (Batch0002+)
Reconstruction6 cameras (front-wide 120°, front-tele 30°, cross-L/R 120°, rear-L/R 70°)
Versions26.02 (current), 25.07, 25.05
LicenseNVIDIA 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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams
Size3 TB total (synthetic only ~700 GB) — 5,843 RDS-HQ clips × 2 chunks × 7 weather = 81,802 synthetic videos (121 frames each)
ModalitiesCosmos-generated MP4, HDMap (lanes/lanelines/road boundaries/wait lines/crosswalks/markings/poles/lights/signs), LiDAR, vehicle pose, camera intrinsics (ftheta + pinhole), 4D object tracking
Cameras7 (front-wide/cross-L/cross-R/rear-L/rear-R/rear-tele/front-tele)
Weather variantsFoggy / Golden hour / Morning / Night / Rainy / Snowy / Sunny
LicenseCC-BY-4.0 (commercial OK with attribution)
Toolingwget … scripts/download.py; python download.py --odir <path> --file_types hdmap,lidar,synthetic
Paperhttps://arxiv.org/abs/2506.09042
Use withUpstream consumers without an in-repo skill: nvidia/Cosmos-Transfer1, nvidia/Cosmos-Predict, NVlabs/alpasim, CARLA.

PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic
StatusPointer / placeholder — content moved to PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams. Use that. (Card is 2.59 kB.)

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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Kitchen
Size12 GB total
Tasksopen/close × {cabinet, dishwasher, fridge, drawer} = 8
Trajectories~874 episodes total (range 72–205 per task)
Cameras6 × 512² RGB+depth+segmentation (world / external / each wrist / head)
LicenseCC-BY-4.0
Commercial

PhysicalAI-Robotics-Manipulation-Objects

Same kitchen environment, bimanual Kinova; pick / place bench / place cabinet.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Objects
Size4.26 GB
Taskspick, place_bench, place_cabinet (540 episodes total)
LicenseCC-BY-4.0 (intended R&D only per card)
Use withUpstream Isaac Sim / Isaac Lab (no in-repo skill).

PhysicalAI-Robotics-Manipulation-SingleArm

Franka Panda tabletop, procedurally generated.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-SingleArm
Size15.3 GB
Taskspanda-stack-wide, panda-stack-platforms, panda-stack-platforms-texture, panda-open-cabinet-{left,right}, panda-open-drawer (~38k episodes)
ModalitiesWorld cam + wrist cam (RGB + depth on the texture/cabinet/drawer subsets)
State53 D (stack-wide) / 81 D (others) — proprioception + object poses
LicenseCC-BY-4.0; commercial OK

PhysicalAI-Robotics-Manipulation-Augmented

Mimic-generated Franka cube-stacking, plus Cosmos-Transfer1 visual augmentation.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Augmented
Size77.9 GB
Episodes1000 mimic + 1000 Cosmos-augmented (table + wrist cams, depth + seg + normals)
Trick10 human teleops → MimicGen 1k → Cosmos Transfer1 photoreal domain randomization
LicenseCC-BY-4.0; commercial OK
Paperhttps://arxiv.org/abs/2503.14492 (Cosmos-Transfer1)
Use withUpstream consumers without an in-repo skill: nvidia/Cosmos-Transfer1 (legacy Transfer1 workflow), Isaac Sim / Isaac Lab (replay scripts ship in the dataset repo).

PhysicalAI-Robotics-Manipulation-Kitchen-Demos

Massive human-teleop dataset on Franka + Omron mobile base.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Kitchen-Demos
Size600 h, 55k trajectories, 316 tasks
FormatLeRobot v2.x with MuJoCo extras/ (model.xml.gz + raw states)
Camerasleft + right agentview + eye-in-hand
Taskspretrain/atomic/... × 100 traj/task (Open*, Close*, PickPlace*, Adjust*, Coffee*, NavigateKitchen, …)
Use withPair 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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Manipulation-Objects-Kitchen-MJCF
Size1.32 GB
CategoriesObjects (~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)
FormatPer-model model.xml + visual / collision OBJ + textures, zipped per category
Use withMuJoCo 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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-X-Embodiment-Sim
Size1.91 TB
Composition9k cross-embodied bimanual (Panda + GR1) + 240k humanoid GR1 tabletop + 24k downsampled + 72k single-Panda RoboCasa + 102 Unitree G1 loco-manipulation = ~345k trajectories
Used bynvidia/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 tipAlways pass --include "<task>/**" — full clone is 1.91 TB

PhysicalAI-GR00T-Tuned-Tasks

Two industrial post-training task families.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-GR00T-Tuned-Tasks
Size26.5 GB
TasksExhaust-Pipe-Sorting (1000), Nut-Pouring (1000)
FormatHDF5 + GR00T-LeRobot, 256² first-person RGB, 26-DoF state/action, 20 Hz
LicenseCC-BY-4.0; commercial OK
Modelsnvidia/GR00T-N1-2B-tuned-Nut-Pouring-task, …-Exhaust-Pipe-Sorting-task

PhysicalAI-Robotics-GR00T-Teleop-G1

Real-robot Unitree G1 fruit pick-and-place.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-G1
Size534 MB
Trajectories1000 real teleop, Unitree G1 upper body + Tri-finger hands + RealSense
TasksPick {apple, pear, grapes, starfruit} → basket
FormatMP4 + HDF5
LicenseCC-BY-4.0; commercial OK
Use withIsaac-GR00T finetune docs (getting_started/3_0_new_embodiment_finetuning.md)

PhysicalAI-Robotics-GR00T-Teleop-Sim

Simulated GR1 tabletop teleop.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-Sim
Size55.4 GB (39 GB LeRobot + 14 GB HDF5)
Trajectories24 tasks × 1000 each
LicenseCC-BY-NC-4.0 (non-commercial) — different from G1 above
FormatHDF5 + LeRobot

PhysicalAI-Robotics-GR00T-Teleop-GR1

DreamDojo pretraining corpus — large-scale human egocentric video.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Teleop-GR1
Size74.3 GB
Coverage44k hours of human egocentric data (per project page)
Projecthttps://dreamdojo-world.github.io/ + https://github.com/NVIDIA/DreamDojo
Paperhttps://arxiv.org/abs/2602.06949

PhysicalAI-Robotics-GR00T-GR1

Lab-recorded GR1-T2 third-person video.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-GR1
Size142 MB
Records92 MP4 videos (Fourier GR1-T2)
UseDreamGen training reference
LicenseCC-BY-4.0; commercial OK

PhysicalAI-Robotics-GR00T-Eval

GR00T eval initial-state frames.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GR00T-Eval
Size180 MB
Records123 PNG frames (GR1-T2 robot's first-person view) + per-frame TXT
LicenseCC-BY-4.0

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.

DatasetRobotTeleop toolDemos providedTotal mimic-generatedStorage
PhysicalAI-Robotics-mindmap-GR1-Stick-in-BinFourier GR1Apple Vision Pro10 (mindmap fmt) + HDF5200 (from 20 human teleops)103 GB
PhysicalAI-Robotics-mindmap-GR1-Drill-in-BoxFourier GR1Apple Vision Pro10 + HDF5200 (from 20 human teleops)53.7 GB
PhysicalAI-Robotics-mindmap-Franka-Cube-StackingFrankaSpaceMouse10 + HDF51000 (from 10 human teleops)6.12 GB
PhysicalAI-Robotics-mindmap-Franka-Mug-in-DrawerFrankaSpaceMouse10 + HDF5250 (from 15 human teleops)34.5 GB

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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-NuRec
Size62.9 GB
ScenesNova-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
FormatUSDZ (3DGUT + mesh + occupancy) loadable in Isaac Sim 5.1
WorkflowsStereo NuRec (Isaac ROS + cuSFM + FoundationStereo + nvblox + 3DGURT) for Carter; Mono NuRec (COLMAP + 3DGURT) for Zurich
GatingContact-info gate (no separate license)
LicenseCC-BY-4.0
Use with../nre/SKILL.md to retrain reconstructions; upstream Isaac Sim 5.1 (no in-repo skill) for AMR simulation; pair with MobilityGen for AMR data generation.

PhysicalAI-NuRec-PPISP

Photometric-variation benchmark for radiance-field methods.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-NuRec-PPISP
Size15.2 GB (8.1 GB COLMAP + 6.2 GB NCore V4)
Captures4 outdoor scenes × 3 cameras (Nikon Z7, OM-1 II, iPhone 13 Pro) = 8 sequences (~2600 photos), +/-2 EV exposure bracketing
VariantsStandard (full bracket) + auto (re-processed with auto-exposure / WB)
LicenseCC-BY-4.0; commercial OK
Use with3DGRUT / GSplat benchmarking via ../nre/SKILL.md (eval-rendering-metrics), ../asset-harvester/SKILL.md.

Robotics — Healthcare

PhysicalAI-Robotics-Open-H-Embodiment

Surgical / ultrasound robotics multi-embodiment corpus.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-Open-H-Embodiment
Size4.5 TB, 750 h, 120,000 trajectories
FormatLeRobot v2.1 — MP4 video + Parquet kinematics + JSONL manifests
Contributors30+ orgs (JHU, Stanford, UCSD, UCB, Vanderbilt, TUM, MBZUAI, …)
PurposeHealthcare autonomy + world-foundation-model training (used by nvidia/GR00T-H and nvidia/Cosmos-H-Surgical-Simulator)
LicenseCC-BY-4.0

Robotics — Grasping

PhysicalAI-Robotics-GraspGen

Sim2Real grasping at scale.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-GraspGen
Size21.6 GB
Coverage57 M+ grasps over 8515 Objaverse-XL (LVIS) objects
GrippersFranka Panda, Robotiq-2f-140, suction (30 mm radius)
FormatWebDataset shards (grasp_data/{franka,robotiq2f140,suction}/shard_{0-7}.tar) + train/valid splits
LicenseCC-BY-4.0; commercial OK
Modelsadithyamurali/GraspGenModels
TipObjaverse meshes are NOT included — pull separately via the bundled download_objaverse.py

Robotics — Physical / material properties

VoMP = Volumetric Mechanical Properties.

PhysicalAI-Robotics-PhysicalAssets-VoMP

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-PhysicalAssets-VoMP
Size65.9 GB on-disk (full data nominally 125 GB pre-compression)
Records1664 objects, 37,337,952 voxels, multi-view renders + VLM material annotations
LicenseCC-BY-4.0

PhysicalAI-Robotics-PhysicalAssets-VoMP-Eval

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Robotics-PhysicalAssets-VoMP-Eval
Size8.41 GB on-disk (full eval data nominally 125 GB pre-compression)
UseHeld-out eval split for the VoMP model
LicenseCC-BY-4.0

Spatial Intelligence + SimReady scenes

PhysicalAI-SimReady-Warehouse-01

OpenUSD warehouse scene + asset library.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-SimReady-Warehouse-01
Size14.4 GB, 753 USD assets + master scene (physical_ai_simready_warehouse_01.usd)
Asset classProp / Assembly / Scenario; 1.1.0 adds physically-graspable subset
MetadataCSV catalogue with WikiData Q-codes, mass (kg), thumbnails
TargetIsaac Sim 4.x (Properties → disable Instanceable → Physics → Rigid Body to make assets dynamic)
LicenseCC-BY-4.0
Use withUpstream consumers without an in-repo skill: Isaac Sim / Isaac Lab, Omniverse SDG.

PhysicalAI-DigitalCousin-Assets

Companion-asset library for the GR1 tabletop sim environments.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-DigitalCousin-Assets
Size270 MB
Content3D meshes, textures, metadata for tabletop objects (mug, bottle, bowl, container, …) used by GR1 sim tasks
LicenseCC-BY-NC-4.0 (non-commercial)

PhysicalAI-SmartSpaces

Multi-camera tracking + 3D box benchmark (AI City Challenge).

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-SmartSpaces
Size3.53 TB total (216 GB MTMC_Tracking_2024 + 3.31 TB MTMC_Tracking_2025)
202490 scenes, 212 h, 953 cameras — Person-only, 2D boxes + multi-cam IDs (52M / 135M)
202523 scenes, 42 h, 504 cameras — Person/Forklift/NovaCarter/Transporter/FourierGR1T2/AgilityDigit, 3D boxes + depth maps (8.9M / 73M)
SplitsWarehouse (train/val/test) + Lab (val) + Hospital (val) + 4 test scenes added 2025-05-28
Evalhttps://eval.aicitychallenge.org/aicity2024 + https://eval.aicitychallenge.org/aicity2025; 3D-bbox HOTA metric for 2025
Paperhttps://arxiv.org/abs/2412.00692 (MCBLT)

PhysicalAI-Spatial-Intelligence-Warehouse

VLM-style spatial QA in warehouses.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-Spatial-Intelligence-Warehouse
Size261 GB
QA pairs499k 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
AnnotationRule-based + Llama-3.1-70B-Instruct refinement
GatingContact-info gate (no separate license)
LicenseCC-BY-4.0
Formattrain.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.

FieldValue
HFhttps://huggingface.co/datasets/nvidia/PhysicalAI-SpatialIntelligence-Lyra-SDG
Size25 TB
Composition59,031 multi-view 3D examples (354,186 videos) + 7,378 4D examples (44,268 videos), 6 trajectories per source
ModalitiesRGB MP4 + camera pose .npz + depth zip
LicenseCC-BY-4.0
Paperhttps://arxiv.org/abs/2509.19296 (Lyra)
Pair withnvidia/Lyra-Testing-Example for inference; nv-tlabs/lyra for training

(See also) PhysicalAI-NuRec-PPISP

Listed in § 7 but is also a spatial-intelligence radiance-field benchmark.

License decision tree

LicenseCommercial 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)✅ researchGR00T-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 usePhysicalAI-Autonomous-Vehicles, …-NCore, …-NuRec

For internal NVIDIA use, the auto-derivable rule of thumb:

  1. If Robotics-Manipulation-* and not mindmap / DigitalCousin-Assets → CC-BY-4.0 commercial OK.
  2. If mindmap-* → research only (NC).
  3. If Autonomous-Vehicles* → AV License only, gated.
  4. 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.

DatasetIn-repo sibling skill(s)Upstream consumers (no in-repo skill)
PhysicalAI-Autonomous-Vehicles../ncore/SKILL.mdNVlabs/alpamayo-1.5, NVlabs/alpasim, CARLA
…-NCore../ncore/SKILL.md, ../asset-harvester/SKILL.md
…-NuRec../nre/SKILL.md, ../nurec-fixer/SKILL.mdCARLA (NuRec integration 0.9.16+)
…-Cosmos-Drive-Dreamsnvidia/Cosmos-Transfer1, nvidia/Cosmos-Predict, NVlabs/alpasim, CARLA
…-Cosmos-Synthetic(pointer to Cosmos-Drive-Dreams)
Robotics-Manipulation-Kitchen / -Objects / -SingleArmIsaac Sim / Isaac Lab
Robotics-Manipulation-Augmentednvidia/Cosmos-Transfer1 (Transfer1 path), Isaac Sim / Isaac Lab
Robotics-Manipulation-Kitchen-Demos + -Kitchen-MJCFMuJoCo direct; Isaac Sim for MJCF→USD
Robotics-GR00T-X-Embodiment-Sim / -Tuned-TasksNVIDIA/Isaac-GR00T, Isaac Sim
Robotics-GR00T-Teleop-G1 / -Sim / -GR1 (DreamDojo)NVIDIA/Isaac-GR00T
Robotics-GR00T-GR1 (DreamGen ref) / -Evalreference assets only
Robotics-mindmap-*nvidia-isaac/nvblox_mindmap, Isaac Lab
Robotics-NuRec../nre/SKILL.mdIsaac Sim 5.1, MobilityGen
NuRec-PPISP../nre/SKILL.md (3DGRUT / GSplat benchmarking)
Robotics-Open-H-Embodimentnvidia/GR00T-H, nvidia/Cosmos-H-Surgical-Simulator
Robotics-GraspGenShips its own visualisation scripts; Isaac Sim for replay
Robotics-PhysicalAssets-VoMP / -EvalVoMP model
SimReady-Warehouse-01Isaac Sim 4.x, Omniverse SDG
DigitalCousin-AssetsIsaac Sim
SmartSpacesAI City Challenge eval server
Spatial-Intelligence-WarehouseWarehouse VLM benchmark (no upstream skill)
SpatialIntelligence-Lyra-SDGnv-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 diskhf 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 the rest from the HDF5 via the upstream mindmap data-generation docs.
  • AV license expired (12 months) — re-accept on the HF page; this is by-design per the License Agreement section 7.

Limitations

  • Catalogue-only. This skill does not actually run any pipeline — it routes the agent to a sibling skill once the right dataset is chosen.
  • NVIDIA-only. Non-NVIDIA datasets (Waymo, nuScenes, KITTI, PandaSet, …) are out of scope; the ncore skill covers how to convert those into NCore V4 manually.
  • Gating is enforced by Hugging Face, not by this skill. Several datasets (e.g. PhysicalAI-Autonomous-Vehicles*, nvidia/Fixer-adjacent assets, mindmap large variants) require both license acceptance on the HF page and a valid HF_TOKEN. Acceptances expire (AV is annual) and must be re-clicked.
  • Footprint can be enormous. PhysicalAI-Autonomous-Vehicles is ~133 TB; Lyra-SDG ~25 TB; Cosmos-Drive-Dreams ~3 TB. Always check free disk and use --include / --exclude filters before kicking off a full pull.
  • The catalogue drifts. NVIDIA ships new PhysicalAI-* datasets regularly. If a dataset isn't in this skill, browse https://huggingface.co/nvidia?search_models=PhysicalAI- and consider opening a PR to update Section 2 / the relevant family.
  • No GPU / runtime checks here. Storage and HF auth are the only prerequisites this skill validates; per-dataset compute needs belong to the consuming sibling skill.

Source links