File size: 16,377 Bytes
af83d87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | #!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Download a small DROID sample dataset from HuggingFace and convert it to
GR00T LeRobot v2 format suitable for inference with the base model.
The full DROID dataset (lerobot/droid_1.0.1) is ~358 GB with 95k+ episodes
in LeRobot v3.0 format. This script downloads only the first data/video chunks,
then extracts a handful of episodes into the v2.0 per-episode format.
Prerequisites:
uv pip install jsonlines # if not already installed
Usage:
python scripts/download_droid_sample.py
python scripts/download_droid_sample.py --num-episodes 5 --output-dir demo_data/droid_sample
After running, test with:
uv run python scripts/deployment/standalone_inference_script.py \\
--model-path nvidia/GR00T-N1.7-3B \\
--dataset-path demo_data/droid_sample \\
--embodiment-tag OXE_DROID_RELATIVE_EEF_RELATIVE_JOINT \\
--traj-ids 0 1 --inference-mode pytorch --action-horizon 8
"""
from __future__ import annotations
import argparse
import json
import logging
from pathlib import Path
import shutil
import subprocess
import jsonlines
import numpy as np
import pyarrow.parquet as pq
from scipy.spatial.transform import Rotation
logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
logger = logging.getLogger(__name__)
# Egocentric frame correction applied after euler-to-matrix conversion.
# Matches the OXE DROID training pipeline (TFG convention).
DROID_EEF_ROTATION_CORRECT = np.array(
[[0, 0, -1], [-1, 0, 0], [0, 1, 0]],
dtype=np.float64,
)
def euler_to_rot6d(euler_angles: np.ndarray) -> np.ndarray:
"""Convert euler angles (3D) to rotation 6D representation.
Uses extrinsic XYZ Euler convention (scipy ``"XYZ"``, equivalent to
``tfg.rotation_matrix_3d.from_euler``) and post-multiplies by
``DROID_EEF_ROTATION_CORRECT`` to match the pretrained model.
Args:
euler_angles: (..., 3) array of euler angles
Returns:
(..., 6) array of rot6d representation
"""
shape = euler_angles.shape[:-1]
flat = euler_angles.reshape(-1, 3)
rot_matrices = Rotation.from_euler("XYZ", flat).as_matrix() # (N, 3, 3)
rot_matrices = rot_matrices @ DROID_EEF_ROTATION_CORRECT
rot6d = rot_matrices[:, :2, :].reshape(-1, 6) # (N, 6)
return rot6d.reshape(*shape, 6)
def compute_eef_9d(cartesian_position: np.ndarray) -> np.ndarray:
"""Convert cartesian_position (XYZ + euler 3D) to eef_9d (XYZ + rot6d).
Args:
cartesian_position: (..., 6) array [x, y, z, euler_x, euler_y, euler_z]
Returns:
(..., 9) array [x, y, z, rot6d_0..5]
"""
xyz = cartesian_position[..., :3]
euler = cartesian_position[..., 3:]
rot6d = euler_to_rot6d(euler)
return np.concatenate([xyz, rot6d], axis=-1)
REPO_ID = "lerobot/droid_1.0.1"
DEFAULT_OUTPUT_DIR = "demo_data/droid_sample"
DEFAULT_NUM_EPISODES = 3
# The 2 cameras used by the OXE_DROID model config.
# (The dataset also has exterior_2_left, but the model only uses 2 cameras.)
VIDEO_KEYS = [
"observation.images.exterior_1_left",
"observation.images.wrist_left",
]
def download_droid_files(cache_dir: Path) -> None:
"""Download minimal files from the DROID v3.0 dataset."""
from huggingface_hub import hf_hub_download
logger.info("Downloading DROID v3.0 metadata and first chunks...")
files_to_download = [
"meta/info.json",
"meta/stats.json",
"meta/tasks.parquet",
"meta/episodes/chunk-000/file-000.parquet",
"data/chunk-000/file-000.parquet",
]
# Download video file-000 for each camera we need
for video_key in VIDEO_KEYS:
files_to_download.append(f"videos/{video_key}/chunk-000/file-000.mp4")
for fname in files_to_download:
logger.info(f" {fname}...")
hf_hub_download(
repo_id=REPO_ID,
repo_type="dataset",
filename=fname,
local_dir=str(cache_dir),
)
def extract_episodes(cache_dir: Path, output_dir: Path, num_episodes: int) -> None:
"""Convert downloaded v3.0 data to GR00T LeRobot v2.0 format."""
output_dir.mkdir(parents=True, exist_ok=True)
meta_dir = output_dir / "meta"
meta_dir.mkdir(exist_ok=True)
# Load source info
with open(cache_dir / "meta" / "info.json") as f:
source_info = json.load(f)
fps = source_info.get("fps", 15)
# ββ Load episodes metadata (v3.0 parquet format) ββ
episodes_pq = cache_dir / "meta" / "episodes" / "chunk-000" / "file-000.parquet"
episodes_df = pq.read_table(episodes_pq).to_pandas()
# Only take episodes from file-000 (the chunk we downloaded)
episodes = []
for _, row in episodes_df.iterrows():
if len(episodes) >= num_episodes:
break
# Skip episodes whose data is in a different file
if int(row["data/file_index"]) != 0:
continue
episodes.append(row)
if not episodes:
raise RuntimeError("No episodes found in first data chunk")
# ββ Load tasks (v3.0: parquet with task text as index, task_index as column) ββ
tasks_df = pq.read_table(cache_dir / "meta" / "tasks.parquet").to_pandas()
tasks_df_reset = tasks_df.reset_index()
# columns after reset: ['index' (= task text), 'task_index']
task_text_col = tasks_df_reset.columns[0] # the task text column
logger.info(f"Extracting {len(episodes)} episodes (fps={fps})")
# ββ Read the consolidated data parquet ββ
data_path = cache_dir / "data" / "chunk-000" / "file-000.parquet"
table = pq.read_table(data_path)
df = table.to_pandas()
# ββ Create per-episode parquet files ββ
data_chunk_dir = output_dir / "data" / "chunk-000"
data_chunk_dir.mkdir(parents=True, exist_ok=True)
episode_records = []
task_indices_used = set()
for ep_row in episodes:
ep_idx = int(ep_row["episode_index"])
ep_df = df[df["episode_index"] == ep_idx].copy()
if len(ep_df) == 0:
logger.warning(f"Episode {ep_idx} has no data rows, skipping")
continue
ep_length = len(ep_df)
new_ep_idx = len(episode_records)
lang = (
str(ep_df["language_instruction"].iloc[0])
if "language_instruction" in ep_df.columns
else ""
)
logger.info(f" Episode {ep_idx} -> {new_ep_idx}: {ep_length} frames, task={lang[:60]!r}")
if "task_index" in ep_df.columns:
task_indices_used.update(ep_df["task_index"].unique().tolist())
ep_df = ep_df.copy()
ep_df["episode_index"] = new_ep_idx
ep_df["index"] = range(len(ep_df))
# Compute eef_9d (XYZ + rot6d) from cartesian_position (XYZ + euler)
# for both state and action, as the model expects 17D = eef_9d(9) + gripper(1) + joints(7)
for prefix in ["observation.state", "action"]:
cart_col = f"{prefix}.cartesian_position"
if cart_col in ep_df.columns:
cart = np.stack(ep_df[cart_col].values) # (T, 6)
eef_9d = compute_eef_9d(cart) # (T, 9)
ep_df[f"{prefix}.eef_9d"] = list(eef_9d)
# Rebuild concatenated observation.state = [eef_9d(9), gripper(1), joint(7)] = 17D
state_parts = []
for col in [
"observation.state.eef_9d",
"observation.state.gripper_position",
"observation.state.joint_position",
]:
if col in ep_df.columns:
vals = ep_df[col].values
arr = np.stack([np.atleast_1d(v) for v in vals])
state_parts.append(arr)
if state_parts:
new_state = np.concatenate(state_parts, axis=-1) # (T, 17)
ep_df["observation.state"] = list(new_state)
# Rebuild concatenated action = [eef_9d(9), gripper(1), joint(7)] = 17D
action_parts = []
for col in ["action.eef_9d", "action.gripper_position", "action.joint_position"]:
if col in ep_df.columns:
vals = ep_df[col].values
arr = np.stack([np.atleast_1d(v) for v in vals])
action_parts.append(arr)
if action_parts:
new_action = np.concatenate(action_parts, axis=-1) # (T, 17)
ep_df["action"] = list(new_action)
ep_parquet = data_chunk_dir / f"episode_{new_ep_idx:06d}.parquet"
ep_df.to_parquet(ep_parquet, index=False)
episode_records.append(
{
"episode_index": new_ep_idx,
"tasks": list(ep_row["tasks"]) if "tasks" in ep_row.index else [],
"length": ep_length,
"_src_row": ep_row, # keep for video timestamp lookup
}
)
if not episode_records:
raise RuntimeError("No episodes could be extracted")
# ββ Extract per-episode video segments using timestamps from episodes metadata ββ
for video_key in VIDEO_KEYS:
video_chunk_dir = output_dir / "videos" / "chunk-000" / video_key
video_chunk_dir.mkdir(parents=True, exist_ok=True)
source_video = cache_dir / "videos" / video_key / "chunk-000" / "file-000.mp4"
if not source_video.exists():
logger.warning(f"Video not found: {source_video}, skipping")
continue
for rec in episode_records:
new_ep_idx = rec["episode_index"]
ep_row = rec["_src_row"]
from_ts = float(ep_row[f"videos/{video_key}/from_timestamp"])
to_ts = float(ep_row[f"videos/{video_key}/to_timestamp"])
duration = to_ts - from_ts
out_video = video_chunk_dir / f"episode_{new_ep_idx:06d}.mp4"
# Try stream copy first (fast), fall back to re-encode for AV1
cmd = [
"ffmpeg",
"-y",
"-loglevel",
"error",
"-ss",
f"{from_ts:.6f}",
"-i",
str(source_video),
"-t",
f"{duration:.6f}",
"-c",
"copy",
str(out_video),
]
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode != 0:
cmd_reencode = [
"ffmpeg",
"-y",
"-loglevel",
"error",
"-ss",
f"{from_ts:.6f}",
"-i",
str(source_video),
"-t",
f"{duration:.6f}",
"-c:v",
"libx264",
"-crf",
"23",
"-preset",
"fast",
str(out_video),
]
subprocess.run(cmd_reencode, check=True)
logger.info(
f" {video_key} ep{new_ep_idx}: re-encoded ({rec['length']} frames, {from_ts:.1f}s-{to_ts:.1f}s)"
)
else:
logger.info(
f" {video_key} ep{new_ep_idx}: copied ({rec['length']} frames, {from_ts:.1f}s-{to_ts:.1f}s)"
)
# ββ Write meta files ββ
# Clean up internal fields before writing
for rec in episode_records:
del rec["_src_row"]
# meta/stats.json β copy from source dataset (used for normalization)
src_stats = cache_dir / "meta" / "stats.json"
if src_stats.exists():
shutil.copy2(src_stats, meta_dir / "stats.json")
logger.info(" Copied stats.json from source dataset")
else:
logger.warning(
" stats.json not found in source. Generate it with:\n"
f" python gr00t/data/stats.py --dataset-path {output_dir} --embodiment-tag OXE_DROID_RELATIVE_EEF_RELATIVE_JOINT"
)
# meta/episodes.jsonl
with jsonlines.open(meta_dir / "episodes.jsonl", mode="w") as writer:
for rec in episode_records:
writer.write(rec)
# meta/tasks.jsonl
with jsonlines.open(meta_dir / "tasks.jsonl", mode="w") as writer:
for _, row in tasks_df_reset.iterrows():
tidx = int(row["task_index"])
if tidx in task_indices_used:
writer.write({"task_index": tidx, "task": str(row[task_text_col])})
# meta/info.json
info = {
"codebase_version": "v2.1",
"robot_type": "droid",
"total_episodes": len(episode_records),
"total_frames": sum(r["length"] for r in episode_records),
"fps": fps,
"data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
"video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
"chunks_size": 1000,
"splits": {"train": f"0:{len(episode_records)}"},
"features": {
"observation.images.exterior_1_left": {
"dtype": "video",
"shape": [180, 320, 3],
},
"observation.images.wrist_left": {
"dtype": "video",
"shape": [180, 320, 3],
},
"observation.state": {"dtype": "float32", "shape": [17]},
"action": {"dtype": "float32", "shape": [17]},
"task_index": {"dtype": "int64", "shape": [1]},
},
}
with open(meta_dir / "info.json", "w") as f:
json.dump(info, f, indent=2)
# meta/modality.json
modality = {
"state": {
"eef_9d": {"start": 0, "end": 9},
"gripper_position": {"start": 9, "end": 10},
"joint_position": {"start": 10, "end": 17},
},
"action": {
"eef_9d": {"start": 0, "end": 9},
"gripper_position": {"start": 9, "end": 10},
"joint_position": {"start": 10, "end": 17},
},
"video": {
"exterior_1_left": {"original_key": "observation.images.exterior_1_left"},
"wrist_left": {"original_key": "observation.images.wrist_left"},
},
"annotation": {
"language.language_instruction": {"original_key": "task_index"},
},
}
with open(meta_dir / "modality.json", "w") as f:
json.dump(modality, f, indent=2)
logger.info(f"\nDataset created at: {output_dir}")
logger.info(f" Episodes: {len(episode_records)}")
logger.info(f" Total frames: {sum(r['length'] for r in episode_records)}")
def main():
parser = argparse.ArgumentParser(
description="Download a small DROID sample dataset for GR00T inference testing.",
)
parser.add_argument("--output-dir", default=DEFAULT_OUTPUT_DIR)
parser.add_argument("--num-episodes", type=int, default=DEFAULT_NUM_EPISODES)
parser.add_argument("--cache-dir", default=None)
args = parser.parse_args()
cache_dir = Path(args.cache_dir or "/tmp/droid_download_cache")
output_dir = Path(args.output_dir)
if output_dir.exists():
logger.info(f"Output already exists: {output_dir} β delete it to regenerate.")
return
download_droid_files(cache_dir)
extract_episodes(cache_dir, output_dir, args.num_episodes)
logger.info("\nTo run inference:")
logger.info(
f" uv run python scripts/deployment/standalone_inference_script.py \\\n"
f" --model-path nvidia/GR00T-N1.7-3B \\\n"
f" --dataset-path {output_dir} \\\n"
f" --embodiment-tag OXE_DROID_RELATIVE_EEF_RELATIVE_JOINT \\\n"
f" --traj-ids 1 2 --inference-mode pytorch --action-horizon 8"
)
if __name__ == "__main__":
main()
|