File size: 8,687 Bytes
337a98d | 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 | # coding=utf-8
# Copyright 2024 The Google Research Authors.
#
# 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.
"""Useful methods shared by all scripts."""
import os
import pickle
import typing
from typing import Any, Dict, Optional
from absl import logging
import gym
from gym.wrappers import RescaleAction
import matplotlib.pyplot as plt
from ml_collections import config_dict
import numpy as np
from sac import replay_buffer
from sac import wrappers
import torch
from torchkit import CheckpointManager
from torchkit.experiment import git_revision_hash
from xirl import common
import yaml
# pylint: disable=logging-fstring-interpolation
ConfigDict = config_dict.ConfigDict
FrozenConfigDict = config_dict.FrozenConfigDict
# ========================================= #
# Experiment utils.
# ========================================= #
def setup_experiment(exp_dir, config, resume = False):
"""Initializes a pretraining or RL experiment."""
# If the experiment directory doesn't exist yet, creates it and dumps the
# config dict as a yaml file and git hash as a text file.
# If it exists already, raises a ValueError to prevent overwriting
# unless resume is set to True.
if os.path.exists(exp_dir):
if not resume:
raise ValueError(
"Experiment already exists. Run with --resume to continue.")
load_config_from_dir(exp_dir, config)
else:
os.makedirs(exp_dir)
with open(os.path.join(exp_dir, "config.yaml"), "w") as fp:
yaml.dump(ConfigDict.to_dict(config), fp)
with open(os.path.join(exp_dir, "git_hash.txt"), "w") as fp:
fp.write(git_revision_hash())
def load_config_from_dir(
exp_dir,
config = None,
):
"""Load experiment config."""
with open(os.path.join(exp_dir, "config.yaml"), "r") as fp:
cfg = yaml.load(fp, Loader=yaml.FullLoader)
# Inplace update the config if one is provided.
if config is not None:
config.update(cfg)
return
return ConfigDict(cfg)
def dump_config(exp_dir, config):
"""Dump config to disk."""
# Note: No need to explicitly delete the previous config file as "w" will
# overwrite the file if it already exists.
with open(os.path.join(exp_dir, "config.yaml"), "w") as fp:
yaml.dump(ConfigDict.to_dict(config), fp)
def copy_config_and_replace(
config,
update_dict = None,
freeze = False,
):
"""Makes a copy of a config and optionally updates its values."""
# Using the ConfigDict constructor leaves the `FieldReferences` untouched
# unlike `ConfigDict.copy_and_resolve_references`.
new_config = ConfigDict(config)
if update_dict is not None:
new_config.update(update_dict)
if freeze:
return FrozenConfigDict(new_config)
return new_config
def load_model_checkpoint(pretrained_path, device):
"""Load a pretrained model and optionally a precomputed goal embedding."""
config = load_config_from_dir(pretrained_path)
model = common.get_model(config)
model.to(device).eval()
checkpoint_dir = os.path.join(pretrained_path, "checkpoints")
checkpoint_manager = CheckpointManager(checkpoint_dir, model=model)
global_step = checkpoint_manager.restore_or_initialize()
logging.info("Restored model from checkpoint %d.", global_step)
return config, model
def save_pickle(experiment_path, arr, name):
"""Save an array as a pickle file."""
filename = os.path.join(experiment_path, name)
with open(filename, "wb") as fp:
pickle.dump(arr, fp)
logging.info("Saved %s to %s", name, filename)
def load_pickle(pretrained_path, name):
"""Load a pickled array."""
filename = os.path.join(pretrained_path, name)
with open(filename, "rb") as fp:
arr = pickle.load(fp)
logging.info("Successfully loaded %s from %s", name, filename)
return arr
# ========================================= #
# RL utils.
# ========================================= #
def make_env(
env_name,
seed,
save_dir = None,
add_episode_monitor = True,
action_repeat = 1,
frame_stack = 1,
):
"""Env factory with wrapping.
Args:
env_name: The name of the environment.
seed: The RNG seed.
save_dir: Specifiy a save directory to wrap with `VideoRecorder`.
add_episode_monitor: Set to True to wrap with `EpisodeMonitor`.
action_repeat: A value > 1 will wrap with `ActionRepeat`.
frame_stack: A value > 1 will wrap with `FrameStack`.
Returns:
gym.Env object.
"""
# Check if the env is in x-magical.
xmagical.register_envs()
if env_name in xmagical.ALL_REGISTERED_ENVS:
env = gym.make(env_name)
else:
raise ValueError(f"{env_name} is not a valid environment name.")
if add_episode_monitor:
env = wrappers.EpisodeMonitor(env)
if action_repeat > 1:
env = wrappers.ActionRepeat(env, action_repeat)
env = RescaleAction(env, -1.0, 1.0)
if save_dir is not None:
env = wrappers.VideoRecorder(env, save_dir=save_dir)
if frame_stack > 1:
env = wrappers.FrameStack(env, frame_stack)
# Seed.
env.seed(seed)
env.action_space.seed(seed)
env.observation_space.seed(seed)
return env
def wrap_learned_reward(env, config):
"""Wrap the environment with a learned reward wrapper.
Args:
env: A `gym.Env` to wrap with a `LearnedVisualRewardWrapper` wrapper.
config: RL config dict, must inherit from base config defined in
`configs/rl_default.py`.
Returns:
gym.Env object.
"""
pretrained_path = config.reward_wrapper.pretrained_path
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model_config, model = load_model_checkpoint(pretrained_path, device)
kwargs = {
"env": env,
"model": model,
"device": device,
"res_hw": model_config.data_augmentation.image_size,
}
if config.reward_wrapper.type == "goal_classifier":
env = wrappers.GoalClassifierLearnedVisualReward(**kwargs)
elif config.reward_wrapper.type == "distance_to_goal":
kwargs["goal_emb"] = load_pickle(pretrained_path, "goal_emb.pkl")
kwargs["distance_scale"] = load_pickle(pretrained_path,
"distance_scale.pkl")
env = wrappers.DistanceToGoalLearnedVisualReward(**kwargs)
else:
raise ValueError(
f"{config.reward_wrapper.type} is not a valid reward wrapper.")
return env
def make_buffer(
env,
device,
config,
):
"""Replay buffer factory.
Args:
env: A `gym.Env`.
device: A `torch.device` object.
config: RL config dict, must inherit from base config defined in
`configs/rl_default.py`.
Returns:
ReplayBuffer.
"""
kwargs = {
"obs_shape": env.observation_space.shape,
"action_shape": env.action_space.shape,
"capacity": config.replay_buffer_capacity,
"device": device,
}
pretrained_path = config.reward_wrapper.pretrained_path
if not pretrained_path:
return replay_buffer.ReplayBuffer(**kwargs)
model_config, model = load_model_checkpoint(pretrained_path, device)
kwargs["model"] = model
kwargs["res_hw"] = model_config.data_augmentation.image_size
if config.reward_wrapper.type == "goal_classifier":
buffer = replay_buffer.ReplayBufferGoalClassifier(**kwargs)
elif config.reward_wrapper.type == "distance_to_goal":
kwargs["goal_emb"] = load_pickle(pretrained_path, "goal_emb.pkl")
kwargs["distance_scale"] = load_pickle(pretrained_path,
"distance_scale.pkl")
buffer = replay_buffer.ReplayBufferDistanceToGoal(**kwargs)
else:
raise ValueError(
f"{config.reward_wrapper.type} is not a valid reward wrapper.")
return buffer
# ========================================= #
# Misc. utils.
# ========================================= #
def plot_reward(rews):
"""Plot raw and cumulative rewards over an episode."""
_, axes = plt.subplots(1, 2, figsize=(12, 4), sharex=True)
axes[0].plot(rews)
axes[0].set_xlabel("Timestep")
axes[0].set_ylabel("Reward")
axes[1].plot(np.cumsum(rews))
axes[1].set_xlabel("Timestep")
axes[1].set_ylabel("Cumulative Reward")
for ax in axes:
ax.grid(b=True, which="major", linestyle="-")
ax.grid(b=True, which="minor", linestyle="-", alpha=0.2)
plt.minorticks_on()
plt.show()
|