File size: 17,700 Bytes
42d9709 | 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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | # SPDX-FileCopyrightText: Copyright (c) 2025 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.
import h5py
import json
import multiprocessing as mp
import numpy as np
import shutil
import subprocess
import traceback
from pathlib import Path
from tqdm import tqdm
from typing import Any, Dict
import pandas as pd
import torchvision
import tyro
from io_utils import dump_json, dump_jsonl, load_gr1_joints_config, load_json
from policies.image_conversion import resize_frames_with_padding
from policies.joints_conversion import remap_sim_joints_to_policy_joints
from robot_joints import JointsAbsPosition
from config.args import Gr00tN1DatasetConfig
import sys
def _video_metadata_from_config(config: Gr00tN1DatasetConfig) -> Dict[str, Any]:
height, width, channels = config.target_image_size
return {
"dtype": "video",
"shape": [int(height), int(width), int(channels)],
"names": ["height", "width", "channel"],
"video_info": {
"video.fps": float(config.fps),
"video.codec": "h264",
# torchvision/ffmpeg backend may choose pix_fmt internally; keep best-effort.
"video.pix_fmt": None,
"video.is_depth_map": False,
"has_audio": False,
},
}
def get_video_metadata(video_path: str | Path, config: Gr00tN1DatasetConfig) -> Dict[str, Any]:
"""
Get video metadata in the specified format.
Args:
video_path: Path to the video file.
Returns:
Video metadata including shape, names, and video_info.
"""
# Prefer ffprobe when available, but fall back to config-derived metadata.
# This makes the script robust on minimal AWS instances where ffprobe isn't installed.
if shutil.which("ffprobe") is None:
return _video_metadata_from_config(config)
cmd = [
"ffprobe",
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=height,width,codec_name,pix_fmt,r_frame_rate",
"-of",
"json",
video_path,
]
try:
output = subprocess.check_output(cmd).decode("utf-8")
probe_data = json.loads(output)
stream = probe_data["streams"][0]
# Parse frame rate (comes as fraction like "15/1")
num, den = map(int, stream["r_frame_rate"].split("/"))
fps = num / den
metadata = {
"dtype": "video",
"shape": [stream["height"], stream["width"], 3], # Assuming 3 channels
"names": ["height", "width", "channel"],
"video_info": {
"video.fps": fps,
"video.codec": stream["codec_name"],
"video.pix_fmt": stream["pix_fmt"],
"video.is_depth_map": False,
"has_audio": False,
},
}
return metadata
except subprocess.CalledProcessError as e:
print(f"Error running ffprobe: {e}")
return _video_metadata_from_config(config)
except FileNotFoundError:
return _video_metadata_from_config(config)
except json.JSONDecodeError as e:
print(f"Error parsing ffprobe output: {e}")
return _video_metadata_from_config(config)
def get_feature_info(
step_data: pd.DataFrame, video_paths: Dict[str, str], config: Gr00tN1DatasetConfig
) -> Dict[str, Any]:
"""
Get feature info from each frame of the video.
Args:
step_data: DataFrame containing data of an episode.
video_paths: Dictionary mapping video keys to their file paths.
config: Configuration object containing dataset and path information.
Returns:
Dictionary containing feature information for each column and video.
"""
features = {}
for video_key, video_path in video_paths.items():
video_metadata = get_video_metadata(video_path, config)
features[video_key] = video_metadata
assert isinstance(step_data, pd.DataFrame)
for column in step_data.columns:
column_data = np.stack(step_data[column], axis=0)
shape = column_data.shape
if len(shape) == 1:
shape = (1,)
else:
shape = shape[1:]
features[column] = {
"dtype": column_data.dtype.name,
"shape": shape,
}
# State & action
if column in [config.lerobot_keys["state"], config.lerobot_keys["action"]]:
dof = column_data.shape[1]
features[column]["names"] = [f"motor_{i}" for i in range(dof)]
return features
def generate_info(
total_episodes: int,
total_frames: int,
total_tasks: int,
total_videos: int,
total_chunks: int,
config: Gr00tN1DatasetConfig,
step_data: pd.DataFrame,
video_paths: Dict[str, str],
) -> Dict[str, Any]:
"""
Generate the info.json data field.
Args:
total_episodes: Total number of episodes in the dataset.
total_frames: Total number of frames across all episodes.
total_tasks: Total number of tasks in the dataset.
total_videos: Total number of videos in the dataset.
total_chunks: Total number of data chunks.
config: Configuration object containing dataset and path information.
step_data: DataFrame containing step data for an example episode.
video_paths: Dictionary mapping video keys to their file paths.
Returns:
Dictionary containing the info.json data field.
"""
info_template = load_json(config.info_template_path)
info_template["robot_type"] = config.robot_type
info_template["total_episodes"] = total_episodes
info_template["total_frames"] = total_frames
info_template["total_tasks"] = total_tasks
info_template["total_videos"] = total_videos
info_template["total_chunks"] = total_chunks
info_template["chunks_size"] = config.chunks_size
info_template["fps"] = config.fps
info_template["data_path"] = config.data_path
info_template["video_path"] = config.video_path
features = get_feature_info(step_data, video_paths, config)
info_template["features"] = features
return info_template
def write_video_job(queue: mp.Queue, error_queue: mp.Queue, config: Gr00tN1DatasetConfig) -> None:
"""
Write frames to videos in mp4 format.
Args:
queue: Multiprocessing queue containing video frame data to be written.
error_queue: Multiprocessing queue for reporting errors from worker processes.
config: Configuration object containing dataset and path information.
Returns:
None
"""
while True:
job = queue.get()
if job is None:
break
try:
video_path, frames, fps, video_type = job
if video_type == "image":
# Create parent directory if it doesn't exist
video_path.parent.mkdir(parents=True, exist_ok=True)
assert frames.shape[1:] == config.original_image_size, f"Frames shape is {frames.shape}"
frames = resize_frames_with_padding(
frames, target_image_size=config.target_image_size, bgr_conversion=False, pad_img=True
)
# h264 codec encoding
torchvision.io.write_video(video_path, frames, fps, video_codec="h264")
except Exception as e:
# Get the traceback
error_queue.put(f"Error in process: {e}\n{traceback.format_exc()}")
def convert_trajectory_to_df(
trajectory: h5py.Dataset,
episode_index: int,
index_start: int,
config: Gr00tN1DatasetConfig,
) -> Dict[str, Any]:
"""
Convert a single trajectory from HDF5 to a pandas DataFrame.
Args:
trajectory: HDF5 dataset containing trajectory data.
episode_index: Index of the current episode.
index_start: Starting index for the episode.
config: Configuration object containing dataset and path information.
Returns:
Dictionary containing the DataFrame, annotation set, and episode length.
"""
return_dict = {}
data = {}
gr00t_modality_config = load_json(config.modality_template_path)
gr00t_joints_config = load_gr1_joints_config(config.gr00t_joints_config_path)
action_joints_config = load_gr1_joints_config(config.action_joints_config_path)
state_joints_config = load_gr1_joints_config(config.state_joints_config_path)
# 1. Get state, action, and timestamp
length = None
for key, hdf5_key_name in config.hdf5_keys.items():
assert key in ["state", "action"]
lerobot_key_name = config.lerobot_keys[key]
if key == "state":
joints = trajectory["obs"][hdf5_key_name]
else:
joints = trajectory[hdf5_key_name]
joints = joints.astype(np.float64)
if key == "state":
# remove the last obs
joints = joints[:-1]
input_joints_config = state_joints_config
elif key == "action":
# remove the last idle action
joints = joints[:-1]
input_joints_config = action_joints_config
else:
raise ValueError(f"Unknown key: {key}")
assert joints.ndim == 2
assert joints.shape[1] == len(input_joints_config)
# 1.1. Remap the joints to the LeRobot joint orders
joints = JointsAbsPosition.from_array(joints, input_joints_config, device="cpu")
remapped_joints = remap_sim_joints_to_policy_joints(joints, gr00t_joints_config)
# 1.2. Fill in the missing joints with zeros
ordered_joints = []
for joint_group in gr00t_modality_config[key].keys():
num_joints = (
gr00t_modality_config[key][joint_group]["end"] - gr00t_modality_config[key][joint_group]["start"]
)
if joint_group not in remapped_joints.keys():
remapped_joints[joint_group] = np.zeros(
(joints.get_joints_pos().shape[0], num_joints), dtype=np.float64
)
else:
assert remapped_joints[joint_group].shape[1] == num_joints
ordered_joints.append(remapped_joints[joint_group])
# 1.3. Concatenate the arrays for parquets
concatenated = np.concatenate(ordered_joints, axis=1)
data[lerobot_key_name] = [row for row in concatenated]
assert len(data[config.lerobot_keys["action"]]) == len(data[config.lerobot_keys["state"]])
length = len(data[config.lerobot_keys["action"]])
data["timestamp"] = np.arange(length).astype(np.float64) * (1.0 / config.fps)
# 2. Get the annotation
annotation_keys = config.lerobot_keys["annotation"]
# task selection
data[annotation_keys[0]] = np.ones(length, dtype=int) * config.task_index
# valid is 1
data[annotation_keys[1]] = np.ones(length, dtype=int) * 1
# 3. Other data
data["episode_index"] = np.ones(length, dtype=int) * episode_index
data["task_index"] = np.zeros(length, dtype=int)
data["index"] = np.arange(length, dtype=int) + index_start
# last frame is successful
reward = np.zeros(length, dtype=np.float64)
reward[-1] = 1
done = np.zeros(length, dtype=bool)
done[-1] = True
data["next.reward"] = reward
data["next.done"] = done
dataframe = pd.DataFrame(data)
return_dict["data"] = dataframe
return_dict["length"] = length
return_dict["annotation"] = set(data[annotation_keys[0]]) | set(data[annotation_keys[1]])
return return_dict
def convert_hdf5_to_lerobot(config: Gr00tN1DatasetConfig):
"""
Convert the MimcGen HDF5 dataset to Gr00t-LeRobot format.
Args:
config: Configuration object containing dataset and path information.
Returns:
None
"""
# Create a queue to communicate with the worker processes
max_queue_size = 10
num_workers = 4
queue = mp.Queue(maxsize=max_queue_size)
error_queue = mp.Queue() # for error handling
# Start the worker processes
workers = []
for _ in range(num_workers):
worker = mp.Process(target=write_video_job, args=(queue, error_queue, config))
worker.start()
workers.append(worker)
assert Path(config.hdf5_file_path).exists()
hdf5_handler = h5py.File(config.hdf5_file_path, "r")
hdf5_data = hdf5_handler["data"]
# 1. Generate meta/ folder
config.lerobot_data_dir.mkdir(parents=True, exist_ok=True)
lerobot_meta_dir = config.lerobot_data_dir / "meta"
lerobot_meta_dir.mkdir(parents=True, exist_ok=True)
tasks = {1: "valid"}
tasks.update({config.task_index: f"{config.language_instruction}"})
# 2. Generate data/
total_length = 0
example_data = None
video_paths = {}
trajectory_ids = list(hdf5_data.keys())
episodes_info = []
for episode_index, trajectory_id in enumerate(tqdm(trajectory_ids)):
try:
trajectory = hdf5_data[trajectory_id]
df_ret_dict = convert_trajectory_to_df(
trajectory=trajectory, episode_index=episode_index, index_start=total_length, config=config
)
except Exception as e:
print(
f"Error loading trajectory {trajectory_id}: {type(e).__name__}: {e!r}"
)
print(traceback.format_exc())
sys.exit(1)
continue
# 2.1. Save the episode data
dataframe = df_ret_dict["data"]
episode_chunk = episode_index // config.chunks_size
save_relpath = config.data_path.format(episode_chunk=episode_chunk, episode_index=episode_index)
save_path = config.lerobot_data_dir / save_relpath
save_path.parent.mkdir(parents=True, exist_ok=True)
dataframe.to_parquet(save_path)
# 2.2. Update total length, episodes_info
length = df_ret_dict["length"]
total_length += length
episodes_info.append(
{
"episode_index": episode_index,
"tasks": [tasks[task_index] for task_index in df_ret_dict["annotation"]],
"length": length,
}
)
# 2.3. Generate videos/
new_video_relpath = config.video_path.format(
episode_chunk=episode_chunk, video_key=config.lerobot_keys["video"], episode_index=episode_index
)
new_video_path = config.lerobot_data_dir / new_video_relpath
if config.video_name_lerobot not in video_paths.keys():
video_paths[config.video_name_lerobot] = new_video_path
assert config.pov_cam_name_sim in trajectory["obs"]
frames = np.array(trajectory["obs"][config.pov_cam_name_sim])
# remove last frame due to how Lab reports observations
frames = frames[:-1]
assert len(frames) == length
queue.put((new_video_path, frames, config.fps, "image"))
if example_data is None:
example_data = df_ret_dict
# 3. Generate the rest of meta/
# 3.1. Generate tasks.json
tasks_path = lerobot_meta_dir / config.tasks_fname
task_jsonlines = [{"task_index": task_index, "task": task} for task_index, task in tasks.items()]
dump_jsonl(task_jsonlines, tasks_path)
# 3.2. Generate episodes.jsonl
episodes_path = lerobot_meta_dir / config.episodes_fname
dump_jsonl(episodes_info, episodes_path)
# 3.3. Generate modality.json
modality_path = lerobot_meta_dir / config.modality_fname
shutil.copy(config.modality_template_path, modality_path)
# # 3.4. Generate info.json
info_json = generate_info(
total_episodes=len(trajectory_ids),
total_frames=total_length,
total_tasks=len(tasks),
total_videos=len(trajectory_ids),
total_chunks=len(trajectory_ids) // config.chunks_size,
step_data=example_data["data"],
video_paths=video_paths,
config=config,
)
dump_json(info_json, lerobot_meta_dir / "info.json", indent=4)
try:
# Check for errors in the error queue
while not error_queue.empty():
error_message = error_queue.get()
print(f"Error in worker process: {error_message}")
# Stop the worker processes
for _ in range(num_workers):
queue.put(None)
for worker in workers:
worker.join()
# Close the HDF5 file handler
hdf5_handler.close()
except Exception as e:
print(f"Error in main process: {e}")
# Make sure to clean up even if there's an error
for worker in workers:
if worker.is_alive():
worker.terminate()
worker.join()
if not hdf5_handler.closed:
hdf5_handler.close()
raise # Re-raise the exception after cleanup
if __name__ == "__main__":
# Parse arguments using tyro
config = tyro.cli(Gr00tN1DatasetConfig)
# Print the tyro config
print("\n" + "=" * 50)
print("GR00T LEROBOT DATASET CONFIGURATION:")
print("=" * 50)
for key, value in vars(config).items():
print(f"{key}: {value}")
print("=" * 50 + "\n")
convert_hdf5_to_lerobot(config)
|