File size: 16,119 Bytes
319eb16 | 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 | import os
import cv2
import gc
from multiprocessing import cpu_count
from pathlib import Path
from typing import Any
import numpy as np
from dataset_upload.dataset_helpers.oxe_helper import OXE_DATASET_CONFIGS
from dataset_upload.helpers import (
create_hf_trajectory,
generate_unique_id,
load_sentence_transformer_model,
)
from tqdm import tqdm
from datasets import Dataset
# Disable GPUs for TensorFlow in this loader to avoid CUDA context issues in workers
os.environ.setdefault("CUDA_VISIBLE_DEVICES", "")
DEBUG_MODE = False
import tensorflow_datasets as tfds
OXE_VALID_DATASETS = [
"austin_buds_dataset_converted_externally_to_rlds",
"austin_sirius_dataset_converted_externally_to_rlds",
"bc_z",
"berkeley_cable_routing",
"berkeley_fanuc_manipulation",
"bridge_v2",
"dlr_edan_shared_control_converted_externally_to_rlds",
"droid",
"fmb",
"fractal20220817_data",
"furniture_bench_dataset_converted_externally_to_rlds",
"iamlab_cmu_pickup_insert_converted_externally_to_rlds",
"jaco_play",
"language_table",
"stanford_hydra_dataset_converted_externally_to_rlds",
"taco_play",
"toto",
"ucsd_kitchen_dataset_converted_externally_to_rlds",
"utaustin_mutex",
"viola",
# not in original
"robo_set",
"aloha_mobile",
"imperialcollege_sawyer_wrist_cam",
"kaist_nonprehensile_converted_externally_to_rlds",
"berkeley_mvp_converted_externally_to_rlds",
"berkeley_rpt_converted_externally_to_rlds",
"nyu_rot_dataset_converted_externally_to_rlds",
"tokyo_u_lsmo_converted_externally_to_rlds",
]
POSSIBLE_LANG_INSTRUCTION_KEYS = [ # valid keys for language instruction in OXE
"natural_language_instruction",
"language_instruction",
"instruction",
"language_instruction1",
"language_instruction2",
"language_instruction3",
]
MAX_LANGTABLE_EPISODES = (
50_000 # for language table, we only want to label the first 50k episodes b/c it's way too many
)
possible_valid_keys = ["primary", "secondary", "tertiary"]
def _stable_shard_for_index(index: int, shard_modulus: int = 1000) -> str:
try:
idx = int(index)
except Exception:
idx = abs(hash(str(index)))
shard_index = idx // shard_modulus
return f"shard_{shard_index:04d}"
def _build_oxe_video_paths(
output_dir: str,
dataset_label: str,
episode_idx: int,
view_key: str,
) -> tuple[str, str]:
shard_dir = _stable_shard_for_index(episode_idx)
episode_dir = os.path.join(output_dir, dataset_label.lower(), shard_dir, f"episode_{episode_idx:06d}")
os.makedirs(episode_dir, exist_ok=True)
filename = f"clip@{view_key}.mp4"
full_path = os.path.join(episode_dir, filename)
rel_path = os.path.join(dataset_label.lower(), shard_dir, f"episode_{episode_idx:06d}", filename)
return full_path, rel_path
def _process_single_oxe_episode(args):
"""Worker function to process a single OXE episode.
This function must be defined at module level to be picklable for multiprocessing.
"""
episode, ep_idx, task, lang_vec, output_dir, dataset_name, max_frames, fps, valid_img_keys = args
episode_entries = []
# Episode is already converted to numpy format
for img_key in valid_img_keys:
# Check first frame for all-black to prune
if img_key not in episode[0]["observation"]:
continue
if np.all(episode[0]["observation"][img_key] == 0):
continue
frames = [s["observation"][img_key] for s in episode if img_key in s["observation"]]
if not frames:
continue
if "nyu_rot_dataset_converted_externally_to_rlds" in dataset_name:
# convert each frame from bgr to rgb
frames = [cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) for frame in frames]
full_path, rel_path = _build_oxe_video_paths(
output_dir=output_dir,
dataset_label=dataset_name,
episode_idx=ep_idx,
view_key=img_key,
)
traj_dict = {
"id": generate_unique_id(),
"frames": frames,
"task": task,
"is_robot": True,
"quality_label": "successful",
"preference_group_id": None,
"preference_rank": None,
}
entry = create_hf_trajectory(
traj_dict=traj_dict,
video_path=full_path,
lang_vector=lang_vec,
max_frames=max_frames,
dataset_name=dataset_name,
use_video=True,
fps=fps,
)
# Clear frames from memory immediately after video creation
del frames
if entry:
entry["frames"] = rel_path
episode_entries.append(entry)
# Clear frames from memory after processing
del episode
return episode_entries
def convert_oxe_dataset_to_hf(
dataset_path: str,
dataset_name: str,
output_dir: str,
max_trajectories: int | None = None,
max_frames: int = 64,
fps: int = 10,
num_workers: int = -1,
) -> Dataset:
"""Convert a single OXE TFDS dataset to HF format by writing videos directly.
Args:
dataset_path: Root path containing TFDS builder directories
dataset_name: Name prefixed with 'oxe_', e.g., 'oxe_language_table'
output_dir: Where to write video files and dataset
max_trajectories: Limit number of produced trajectories (None for all)
max_frames: Max frames per video
fps: Video fps
Returns:
datasets.Dataset with entries containing relative video paths.
"""
# Normalize name and basic checks
if dataset_name is None:
raise ValueError("dataset_name is required")
base_ds_name = dataset_name.replace("oxe_", "")
if base_ds_name.endswith("_eval"):
base_ds_name = base_ds_name[:-5]
EVAL_MODE = True
# use eval/val/test
else:
EVAL_MODE = False
root = Path(os.path.expanduser(dataset_path))
if not root.exists():
raise FileNotFoundError(f"Dataset path not found: {root}")
# Find builder directory/version
versions = os.listdir(f"{root}/{base_ds_name}")
if len(versions) == 0:
raise ValueError(f"No versions found for {base_ds_name} in {root}")
builder = None
for version in versions:
if "incomplete" in version:
continue
builder = tfds.builder_from_directory(f"{root}/{base_ds_name}/{version}")
break
if builder is None:
raise ValueError(f"No valid builder found for {base_ds_name} in {root}")
if EVAL_MODE:
ds_all_dict = builder.as_dataset()
splits = list(ds_all_dict.keys())
splits.remove("train")
if len(splits) == 0:
raise ValueError(f"No valid EVAL dataset found for {base_ds_name} in {root}")
elif len(splits) == 1:
dataset = builder.as_dataset(split=splits[0], shuffle_files=False)
else:
raise ValueError(f"Multiple EVAL splits found for {base_ds_name} in {root}: {splits}")
print(f"Loaded EVAL dataset for {base_ds_name} in {root}")
# splits = ["val", "test"]
# for split in splits:
# try:
# dataset = builder.as_dataset(split=split, shuffle_files=False)
# break
# except Exception as e:
# print(f"Error loading {split} split: {e}")
# dataset = None
# continue
# if dataset is None:
# raise ValueError(f"No valid {EVAL_MODE} dataset found for {base_ds_name} in {root}")
else:
dataset = builder.as_dataset(split="train", shuffle_files=False)
# Determine valid image observation keys
img_key_to_name = OXE_DATASET_CONFIGS[base_ds_name]["image_obs_keys"]
if "droid" not in base_ds_name: # make sure to use DROID's wrist cam
img_key_to_name = {k: v for k, v in img_key_to_name.items() if k != "wrist"}
valid_img_keys = list(img_key_to_name.values())
# Determine number of workers
if num_workers == -1:
num_workers = min(cpu_count(), 8) # or else ram usage will blow up
elif num_workers == 0:
num_workers = 1
# Language model and cache
lang_model = load_sentence_transformer_model()
lang_cache: dict[str, Any] = {}
entries: list[dict[str, Any]] = []
produced = 0
if DEBUG_MODE:
max_limit = 100
else:
max_limit = float("inf") if (max_trajectories is None or max_trajectories == -1) else int(max_trajectories)
if "language_table" in base_ds_name:
max_limit = MAX_LANGTABLE_EPISODES
# Process episodes in batches to avoid OOM
batch_size = 32 # Process episodes in smaller batches
entries = []
produced = 0
print(f"Processing episodes in batches of {batch_size} with {num_workers} workers...")
# Process episodes in batches to manage memory
episode_batch = []
episode_info_batch = []
for ep_idx, episode in enumerate(tqdm(dataset, desc=f"Processing {base_ds_name} episodes")):
if ep_idx >= max_limit:
break
# Materialize first step for language and sanity checks
try:
first_step = next(iter(tfds.as_numpy(episode["steps"])))
except StopIteration:
continue
# Extract task/instruction
task: str | None = None
for key in POSSIBLE_LANG_INSTRUCTION_KEYS:
if key in first_step.get("observation", {}):
if base_ds_name == "language_table":
t = first_step["observation"][key]
task = bytes(t[np.where(t != 0)].tolist()).decode("utf-8")
else:
task = first_step["observation"][key].decode()
break
elif key in first_step:
task = first_step[key].decode()
break
if not task:
continue
# Precompute embedding
if task not in lang_cache:
lang_cache[task] = lang_model.encode(task)
lang_vec = lang_cache[task]
# Convert TensorFlow objects to numpy for pickling
try:
# Convert episode to numpy format for multiprocessing
episode_np = tfds.as_numpy(episode)
# iterate through all steps and just store as a list
episode_np = list(episode_np["steps"])
episode_batch.append(episode_np)
episode_info_batch.append((ep_idx, task, lang_vec))
except Exception as e:
print(f"Warning: Failed to convert episode {ep_idx} to numpy: {e}")
continue
# Process batch when it's full or we've reached the limit
if len(episode_batch) >= batch_size or ep_idx + 1 >= max_limit:
print(f"Processing batch of {len(episode_batch)} episodes...")
if num_workers == 1:
# Sequential processing
for args in zip(
episode_batch,
[info[0] for info in episode_info_batch],
[info[1] for info in episode_info_batch],
[info[2] for info in episode_info_batch],
[output_dir] * len(episode_batch),
[dataset_name] * len(episode_batch),
[max_frames] * len(episode_batch),
[fps] * len(episode_batch),
[valid_img_keys] * len(episode_batch),
strict=False,
):
episode_entries = _process_single_oxe_episode(args)
entries.extend(episode_entries)
produced += len(episode_entries)
else:
# Parallel processing
from multiprocessing import Pool
# Prepare arguments for workers
worker_args = list(
zip(
episode_batch,
[info[0] for info in episode_info_batch],
[info[1] for info in episode_info_batch],
[info[2] for info in episode_info_batch],
[output_dir] * len(episode_batch),
[dataset_name] * len(episode_batch),
[max_frames] * len(episode_batch),
[fps] * len(episode_batch),
[valid_img_keys] * len(episode_batch),
strict=False,
)
)
with Pool(processes=num_workers) as pool:
results = list(
tqdm(
pool.imap_unordered(_process_single_oxe_episode, worker_args),
total=len(worker_args),
desc=f"Processing batch (workers={num_workers})",
)
)
# Collect all results
for episode_entries in results:
entries.extend(episode_entries)
produced += len(episode_entries)
# Clear batch for next iteration
episode_batch = []
episode_info_batch = []
# Force garbage collection to free memory
gc.collect()
# Check if we've reached the limit
if produced >= max_limit:
break
# For language_table, cap the number of episodes considered
if base_ds_name == "language_table" and ep_idx + 1 >= MAX_LANGTABLE_EPISODES:
break
# After iterating all episodes, process any remaining batch
if episode_batch:
if num_workers == 1:
for args in zip(
episode_batch,
[info[0] for info in episode_info_batch],
[info[1] for info in episode_info_batch],
[info[2] for info in episode_info_batch],
[output_dir] * len(episode_batch),
[dataset_name] * len(episode_batch),
[max_frames] * len(episode_batch),
[fps] * len(episode_batch),
[valid_img_keys] * len(episode_batch),
strict=False,
):
episode_entries = _process_single_oxe_episode(args)
entries.extend(episode_entries)
produced += len(episode_entries)
else:
from multiprocessing import Pool
worker_args = list(
zip(
episode_batch,
[info[0] for info in episode_info_batch],
[info[1] for info in episode_info_batch],
[info[2] for info in episode_info_batch],
[output_dir] * len(episode_batch),
[dataset_name] * len(episode_batch),
[max_frames] * len(episode_batch),
[fps] * len(episode_batch),
[valid_img_keys] * len(episode_batch),
strict=False,
)
)
with Pool(processes=num_workers) as pool:
results = list(
tqdm(
pool.imap_unordered(_process_single_oxe_episode, worker_args),
total=len(worker_args),
desc=f"Processing batch (workers={num_workers})",
)
)
for episode_entries in results:
entries.extend(episode_entries)
produced += len(episode_entries)
if produced >= max_limit:
break
# Force garbage collection after final batch
gc.collect()
if not entries:
return Dataset.from_dict({
"id": [],
"task": [],
"lang_vector": [],
"data_source": [],
"frames": [],
"is_robot": [],
"quality_label": [],
"preference_group_id": [],
"preference_rank": [],
})
return Dataset.from_list(entries)
|