File size: 11,104 Bytes
e7a3f8b | 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 | import argparse
import cv2
import datetime
import h5py
import init_path
import json
import numpy as np
import os
import robosuite as suite
import time
from glob import glob
from robosuite import load_controller_config
from robosuite.wrappers import DataCollectionWrapper, VisualizationWrapper
from robosuite.utils.input_utils import input2action
import libero.libero.envs.bddl_utils as BDDLUtils
from libero.libero.envs import *
def collect_human_trajectory(
env, device, arm, env_configuration, problem_info, remove_directory=[]
):
"""
Use the device (keyboard or SpaceNav 3D mouse) to collect a demonstration.
The rollout trajectory is saved to files in npz format.
Modify the DataCollectionWrapper wrapper to add new fields or change data formats.
Args:
env (MujocoEnv): environment to control
device (Device): to receive controls from the device
arms (str): which arm to control (eg bimanual) 'right' or 'left'
env_configuration (str): specified environment configuration
"""
reset_success = False
while not reset_success:
try:
env.reset()
reset_success = True
except:
continue
# ID = 2 always corresponds to agentview
env.render()
task_completion_hold_count = (
-1
) # counter to collect 10 timesteps after reaching goal
device.start_control()
# Loop until we get a reset from the input or the task completes
saving = True
count = 0
while True:
count += 1
# Set active robot
active_robot = (
env.robots[0]
if env_configuration == "bimanual"
else env.robots[arm == "left"]
)
# Get the newest action
action, grasp = input2action(
device=device,
robot=active_robot,
active_arm=arm,
env_configuration=env_configuration,
)
# If action is none, then this a reset so we should break
if action is None:
print("Break")
saving = False
break
# Run environment step
env.step(action)
env.render()
# Also break if we complete the task
if task_completion_hold_count == 0:
break
# state machine to check for having a success for 10 consecutive timesteps
if env._check_success():
if task_completion_hold_count > 0:
task_completion_hold_count -= 1 # latched state, decrement count
else:
task_completion_hold_count = 10 # reset count on first success timestep
else:
task_completion_hold_count = -1 # null the counter if there's no success
print(count)
# cleanup for end of data collection episodes
if not saving:
remove_directory.append(env.ep_directory.split("/")[-1])
env.close()
return saving
def gather_demonstrations_as_hdf5(
directory, out_dir, env_info, args, remove_directory=[]
):
"""
Gathers the demonstrations saved in @directory into a
single hdf5 file.
The strucure of the hdf5 file is as follows.
data (group)
date (attribute) - date of collection
time (attribute) - time of collection
repository_version (attribute) - repository version used during collection
env (attribute) - environment name on which demos were collected
demo1 (group) - every demonstration has a group
model_file (attribute) - model xml string for demonstration
states (dataset) - flattened mujoco states
actions (dataset) - actions applied during demonstration
demo2 (group)
...
Args:
directory (str): Path to the directory containing raw demonstrations.
out_dir (str): Path to where to store the hdf5 file.
env_info (str): JSON-encoded string containing environment information,
including controller and robot info
"""
hdf5_path = os.path.join(out_dir, "demo.hdf5")
f = h5py.File(hdf5_path, "w")
# store some metadata in the attributes of one group
grp = f.create_group("data")
num_eps = 0
env_name = None # will get populated at some point
for ep_directory in os.listdir(directory):
# print(ep_directory)
if ep_directory in remove_directory:
# print("Skipping")
continue
state_paths = os.path.join(directory, ep_directory, "state_*.npz")
states = []
actions = []
for state_file in sorted(glob(state_paths)):
dic = np.load(state_file, allow_pickle=True)
env_name = str(dic["env"])
states.extend(dic["states"])
for ai in dic["action_infos"]:
actions.append(ai["actions"])
if len(states) == 0:
continue
# Delete the first actions and the last state. This is because when the DataCollector wrapper
# recorded the states and actions, the states were recorded AFTER playing that action.
del states[-1]
assert len(states) == len(actions)
num_eps += 1
ep_data_grp = grp.create_group("demo_{}".format(num_eps))
# store model xml as an attribute
xml_path = os.path.join(directory, ep_directory, "model.xml")
with open(xml_path, "r") as f:
xml_str = f.read()
ep_data_grp.attrs["model_file"] = xml_str
# write datasets for states and actions
ep_data_grp.create_dataset("states", data=np.array(states))
ep_data_grp.create_dataset("actions", data=np.array(actions))
# write dataset attributes (metadata)
now = datetime.datetime.now()
grp.attrs["date"] = "{}-{}-{}".format(now.month, now.day, now.year)
grp.attrs["time"] = "{}:{}:{}".format(now.hour, now.minute, now.second)
grp.attrs["repository_version"] = suite.__version__
grp.attrs["env"] = env_name
grp.attrs["env_info"] = env_info
grp.attrs["problem_info"] = json.dumps(problem_info)
grp.attrs["bddl_file_name"] = args.bddl_file
grp.attrs["bddl_file_content"] = str(open(args.bddl_file, "r", encoding="utf-8"))
f.close()
if __name__ == "__main__":
# Arguments
parser = argparse.ArgumentParser()
parser.add_argument(
"--directory",
type=str,
default="demonstration_data",
)
parser.add_argument(
"--robots",
nargs="+",
type=str,
default="Panda",
help="Which robot(s) to use in the env",
)
parser.add_argument(
"--config",
type=str,
default="single-arm-opposed",
help="Specified environment configuration if necessary",
)
parser.add_argument(
"--arm",
type=str,
default="right",
help="Which arm to control (eg bimanual) 'right' or 'left'",
)
parser.add_argument(
"--camera",
type=str,
default="agentview",
help="Which camera to use for collecting demos",
)
parser.add_argument(
"--controller",
type=str,
default="OSC_POSE",
help="Choice of controller. Can be 'IK_POSE' or 'OSC_POSE'",
)
parser.add_argument("--device", type=str, default="spacemouse")
parser.add_argument(
"--pos-sensitivity",
type=float,
default=1.5,
help="How much to scale position user inputs",
)
parser.add_argument(
"--rot-sensitivity",
type=float,
default=1.0,
help="How much to scale rotation user inputs",
)
parser.add_argument(
"--num-demonstration",
type=int,
default=50,
help="How much to scale rotation user inputs",
)
parser.add_argument("--bddl-file", type=str)
parser.add_argument("--vendor-id", type=int, default=9583)
parser.add_argument("--product-id", type=int, default=50734)
args = parser.parse_args()
# Get controller config
controller_config = load_controller_config(default_controller=args.controller)
# Create argument configuration
config = {
"robots": args.robots,
"controller_configs": controller_config,
}
assert os.path.exists(args.bddl_file)
problem_info = BDDLUtils.get_problem_info(args.bddl_file)
# Check if we're using a multi-armed environment and use env_configuration argument if so
# Create environment
problem_name = problem_info["problem_name"]
domain_name = problem_info["domain_name"]
language_instruction = problem_info["language_instruction"]
if "TwoArm" in problem_name:
config["env_configuration"] = args.config
print(language_instruction)
env = TASK_MAPPING[problem_name](
bddl_file_name=args.bddl_file,
**config,
has_renderer=True,
has_offscreen_renderer=False,
render_camera=args.camera,
ignore_done=True,
use_camera_obs=False,
reward_shaping=True,
control_freq=20,
)
# Wrap this with visualization wrapper
env = VisualizationWrapper(env)
# Grab reference to controller config and convert it to json-encoded string
env_info = json.dumps(config)
# wrap the environment with data collection wrapper
tmp_directory = "demonstration_data/tmp/{}_ln_{}/{}".format(
problem_name,
language_instruction.replace(" ", "_").strip('""'),
str(time.time()).replace(".", "_"),
)
env = DataCollectionWrapper(env, tmp_directory)
# initialize device
if args.device == "keyboard":
from robosuite.devices import Keyboard
device = Keyboard(
pos_sensitivity=args.pos_sensitivity, rot_sensitivity=args.rot_sensitivity
)
env.viewer.add_keypress_callback("any", device.on_press)
env.viewer.add_keyup_callback("any", device.on_release)
env.viewer.add_keyrepeat_callback("any", device.on_press)
elif args.device == "spacemouse":
from robosuite.devices import SpaceMouse
device = SpaceMouse(
args.vendor_id,
args.product_id,
pos_sensitivity=args.pos_sensitivity,
rot_sensitivity=args.rot_sensitivity,
)
else:
raise Exception(
"Invalid device choice: choose either 'keyboard' or 'spacemouse'."
)
# make a new timestamped directory
t1, t2 = str(time.time()).split(".")
new_dir = os.path.join(
args.directory,
f"{domain_name}_ln_{problem_name}_{t1}_{t2}_"
+ language_instruction.replace(" ", "_").strip('""'),
)
os.makedirs(new_dir)
# collect demonstrations
remove_directory = []
i = 0
while i < args.num_demonstration:
print(i)
saving = collect_human_trajectory(
env, device, args.arm, args.config, problem_info, remove_directory
)
if saving:
print(remove_directory)
gather_demonstrations_as_hdf5(
tmp_directory, new_dir, env_info, args, remove_directory
)
i += 1
|