File size: 13,621 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 | """
Generates a LIBERO failure dataset (HDF5 files) by replaying demonstrations with added noise in the environments.
Notes:
- We save image observations at 256x256px resolution (instead of 128x128).
- We filter out transitions with "no-op" (zero) actions that do not change the robot's state.
- We only save trajectories that FAIL (do not complete successfully) to create a failure dataset.
Usage:
python generate_failure_dataset.py \
--libero_task_suite [ libero_spatial | libero_object | libero_goal | libero_10 ] \
--libero_raw_data_dir <PATH TO RAW HDF5 DATASET DIR> \
--libero_target_dir <PATH TO TARGET DIR> \
[--debug_mode]
Example (LIBERO-Spatial):
python generate_failure_dataset.py \
--libero_task_suite libero_90 \
--libero_raw_data_dir ./libero/datasets/libero_90 \
--libero_target_dir ./libero/datasets/libero_90_failure \
--debug_mode
"""
# Add libero to the python path
import sys
sys.path.append("deps/libero/LIBERO")
import argparse
import json
import os
from datetime import datetime
import h5py
import imageio
import numpy as np
import robosuite.utils.transform_utils as T
import tqdm
from libero.libero import benchmark, get_libero_path
from libero.libero.envs import OffScreenRenderEnv
IMAGE_RESOLUTION = 256
def get_libero_env(task, model_family, resolution=256):
"""Initializes and returns the LIBERO environment, along with the task description."""
task_description = task.language
task_bddl_file = os.path.join(get_libero_path("bddl_files"), task.problem_folder, task.bddl_file)
env_args = {"bddl_file_name": task_bddl_file, "camera_heights": resolution, "camera_widths": resolution}
env = OffScreenRenderEnv(**env_args)
env.seed(0) # IMPORTANT: seed seems to affect object positions even when using fixed initial state
return env, task_description
def get_libero_dummy_action(model_family: str):
"""Get dummy/no-op action, used to roll out the simulation while the robot does nothing."""
return [0, 0, 0, 0, 0, 0, -1]
def save_failure_video(rollout_images, task_id, demo_id, task_description):
"""Saves an MP4 replay of a failure episode."""
# Create timestamp for unique filename
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
# Process task description for filename
processed_task_description = task_description.lower().replace(" ", "_").replace("\n", "_").replace(".", "_")[:50]
# Create filename
mp4_path = f"failure_task{task_id}_demo{demo_id}_{timestamp}_{processed_task_description}.mp4"
# Create video writer
video_writer = imageio.get_writer(mp4_path, fps=30)
# Write frames
for img in rollout_images:
video_writer.append_data(img)
video_writer.close()
print(f"Saved failure video at: {mp4_path}")
return mp4_path
def is_noop(action, prev_action=None, threshold=1e-4):
"""
Returns whether an action is a no-op action.
A no-op action satisfies two criteria:
(1) All action dimensions, except for the last one (gripper action), are near zero.
(2) The gripper action is equal to the previous timestep's gripper action.
Explanation of (2):
Naively filtering out actions with just criterion (1) is not good because you will
remove actions where the robot is staying still but opening/closing its gripper.
So you also need to consider the current state (by checking the previous timestep's
gripper action as a proxy) to determine whether the action really is a no-op.
"""
# Special case: Previous action is None if this is the first action in the episode
# Then we only care about criterion (1)
if prev_action is None:
return np.linalg.norm(action[:-1]) < threshold
# Normal case: Check both criteria (1) and (2)
gripper_action = action[-1]
prev_gripper_action = prev_action[-1]
return np.linalg.norm(action[:-1]) < threshold and gripper_action == prev_gripper_action
def main(args):
print(f"Generating {args.libero_task_suite} failure dataset!")
if args.debug_mode:
print("Debug mode: Will save failure trajectory as MP4 video")
# Create target directory
if os.path.isdir(args.libero_target_dir):
user_input = input(
f"Target directory already exists at path: {args.libero_target_dir}\nEnter 'y' to overwrite the directory, or anything else to exit: "
)
if user_input != "y":
exit()
os.makedirs(args.libero_target_dir, exist_ok=True)
# Prepare JSON file to record success/failure and initial states per episode
metainfo_json_dict = {}
metainfo_json_out_path = f"deps/libero/LIBERO/libero/datasets/{args.libero_task_suite}_rerender_metainfo.json"
with open(metainfo_json_out_path, "w") as f:
# Just test that we can write to this file (we overwrite it later)
json.dump(metainfo_json_dict, f)
# Get task suite
benchmark_dict = benchmark.get_benchmark_dict()
task_suite = benchmark_dict[args.libero_task_suite]()
num_tasks_in_suite = task_suite.n_tasks
# Setup
num_replays = 0
num_failures = 0
num_noops = 0
for task_id in tqdm.tqdm(range(num_tasks_in_suite)):
# Get task in suite
task = task_suite.get_task(task_id)
env, task_description = get_libero_env(task, "llava", resolution=IMAGE_RESOLUTION)
# Get dataset for task
orig_data_path = os.path.join(args.libero_raw_data_dir, f"{task.name}_demo.hdf5")
assert os.path.exists(orig_data_path), f"Cannot find raw data file {orig_data_path}."
orig_data_file = h5py.File(orig_data_path, "r")
orig_data = orig_data_file["data"]
# Create new HDF5 file for failure demos
new_data_path = os.path.join(args.libero_target_dir, f"{task.name}_demo.hdf5")
new_data_file = h5py.File(new_data_path, "w")
grp = new_data_file.create_group("data")
for i in range(len(orig_data.keys())):
# Get demo data
demo_data = orig_data[f"demo_{i}"]
orig_actions = demo_data["actions"][()]
orig_states = demo_data["states"][()]
# Reset environment, set initial state, and wait a few steps for environment to settle
env.reset()
env.set_init_state(orig_states[0])
for _ in range(10):
obs, reward, done, info = env.step(get_libero_dummy_action("llava"))
# Set up new data lists
states = []
actions = []
ee_states = []
gripper_states = []
joint_states = []
robot_states = []
agentview_images = []
eye_in_hand_images = []
# For video saving (if enabled)
if args.debug_mode:
rollout_images = []
# Replay original demo actions with added noise in environment and record observations
for _, action in enumerate(orig_actions):
# Skip transitions with no-op actions
prev_action = actions[-1] if len(actions) > 0 else None
if is_noop(action, prev_action):
print(f"\tSkipping no-op action: {action}")
num_noops += 1
continue
if states == []:
# In the first timestep, since we're using the original initial state to initialize the environment,
# copy the initial state (first state in episode) over from the original HDF5 to the new one
states.append(orig_states[0])
robot_states.append(demo_data["robot_states"][0])
else:
# For all other timesteps, get state from environment and record it
states.append(env.sim.get_state().flatten())
robot_states.append(
np.concatenate([obs["robot0_gripper_qpos"], obs["robot0_eef_pos"], obs["robot0_eef_quat"]])
)
# Add noise to action to create failure trajectories
actions.append(action)
# Record data returned by environment
if "robot0_gripper_qpos" in obs:
gripper_states.append(obs["robot0_gripper_qpos"])
joint_states.append(obs["robot0_joint_pos"])
ee_states.append(
np.hstack((
obs["robot0_eef_pos"],
T.quat2axisangle(obs["robot0_eef_quat"]),
))
)
agentview_images.append(obs["agentview_image"])
eye_in_hand_images.append(obs["robot0_eye_in_hand_image"])
# Save image for video (if enabled)
if args.debug_mode:
rollout_images.append(obs["agentview_image"])
# Execute demo action in environment
obs, _reward, done, _info = env.step(action.tolist())
# At end of episode, save replayed trajectories to new HDF5 files (only keep FAILURES)
if done: # Changed from 'if done:' to 'if not done:' to save failures
dones = np.zeros(len(actions)).astype(np.uint8)
dones[-1] = 1
rewards = np.zeros(len(actions)).astype(np.uint8)
# No reward for failure trajectories
assert len(actions) == len(agentview_images)
ep_data_grp = grp.create_group(f"demo_{i}")
obs_grp = ep_data_grp.create_group("obs")
obs_grp.create_dataset("gripper_states", data=np.stack(gripper_states, axis=0))
obs_grp.create_dataset("joint_states", data=np.stack(joint_states, axis=0))
obs_grp.create_dataset("ee_states", data=np.stack(ee_states, axis=0))
obs_grp.create_dataset("ee_pos", data=np.stack(ee_states, axis=0)[:, :3])
obs_grp.create_dataset("ee_ori", data=np.stack(ee_states, axis=0)[:, 3:])
obs_grp.create_dataset("agentview_rgb", data=np.stack(agentview_images, axis=0))
obs_grp.create_dataset("eye_in_hand_rgb", data=np.stack(eye_in_hand_images, axis=0))
ep_data_grp.create_dataset("actions", data=actions)
ep_data_grp.create_dataset("states", data=np.stack(states))
ep_data_grp.create_dataset("robot_states", data=np.stack(robot_states, axis=0))
ep_data_grp.create_dataset("rewards", data=rewards)
ep_data_grp.create_dataset("dones", data=dones)
# Save failure video if debugging is enabled
if args.debug_mode:
save_failure_video(rollout_images, task_id, i, task_description)
print("Saved failure video")
exit()
num_failures += 1
num_replays += 1
# Record success/failure and initial environment state in metainfo dict
task_key = task_description.replace(" ", "_")
episode_key = f"demo_{i}"
if task_key not in metainfo_json_dict:
metainfo_json_dict[task_key] = {}
if episode_key not in metainfo_json_dict[task_key]:
metainfo_json_dict[task_key][episode_key] = {}
metainfo_json_dict[task_key][episode_key]["success"] = bool(done)
metainfo_json_dict[task_key][episode_key]["initial_state"] = orig_states[0].tolist()
# Write metainfo dict to JSON file
# (We repeatedly overwrite, rather than doing this once at the end, just in case the script crashes midway)
with open(metainfo_json_out_path, "w") as f:
json.dump(metainfo_json_dict, f, indent=2)
# Count total number of failure replays so far
print(
f"Total # episodes replayed: {num_replays}, Total # failures: {num_failures} ({num_failures / num_replays * 100:.1f} %)"
)
# Report total number of no-op actions filtered out so far
print(f" Total # no-op actions filtered out: {num_noops}")
# Close HDF5 files
orig_data_file.close()
new_data_file.close()
print(f"Saved failure demos for task '{task_description}' at: {new_data_path}")
env.close()
print(f"Failure dataset generation complete! Saved new dataset at: {args.libero_target_dir}")
print(f"Saved metainfo JSON at: {metainfo_json_out_path}")
if __name__ == "__main__":
# Parse command-line arguments
parser = argparse.ArgumentParser()
parser.add_argument(
"--libero_task_suite",
type=str,
choices=["libero_spatial", "libero_object", "libero_goal", "libero_10", "libero_90"],
help="LIBERO task suite. Example: libero_spatial",
required=True,
)
parser.add_argument(
"--libero_raw_data_dir",
type=str,
help="Path to directory containing raw HDF5 dataset. Example: ./LIBERO/libero/datasets/libero_spatial",
required=True,
)
parser.add_argument(
"--libero_target_dir",
type=str,
help="Path to failure dataset directory. Example: ./LIBERO/libero/datasets/libero_spatial_failure",
required=True,
)
parser.add_argument(
"--debug_mode", action="store_true", help="Save failure trajectories as MP4 videos for debugging"
)
args = parser.parse_args()
# Start failure dataset generation
main(args)
|