Files
curl/utils.py
2020-02-20 02:48:52 -08:00

437 lines
13 KiB
Python

import torch
import numpy as np
import torch.nn as nn
import gym
import os
from collections import deque
import random
from torch.utils.data import Dataset, DataLoader
import time
from skimage.util.shape import view_as_windows
class eval_mode(object):
def __init__(self, *models):
self.models = models
def __enter__(self):
self.prev_states = []
for model in self.models:
self.prev_states.append(model.training)
model.train(False)
def __exit__(self, *args):
for model, state in zip(self.models, self.prev_states):
model.train(state)
return False
def soft_update_params(net, target_net, tau):
for param, target_param in zip(net.parameters(), target_net.parameters()):
target_param.data.copy_(
tau * param.data + (1 - tau) * target_param.data
)
def set_seed_everywhere(seed):
torch.manual_seed(seed)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(seed)
np.random.seed(seed)
random.seed(seed)
def module_hash(module):
result = 0
for tensor in module.state_dict().values():
result += tensor.sum().item()
return result
def make_dir(dir_path):
try:
os.mkdir(dir_path)
except OSError:
pass
return dir_path
def preprocess_obs(obs, bits=5):
"""Preprocessing image, see https://arxiv.org/abs/1807.03039."""
bins = 2**bits
assert obs.dtype == torch.float32
if bits < 8:
obs = torch.floor(obs / 2**(8 - bits))
obs = obs / bins
obs = obs + torch.rand_like(obs) / bins
obs = obs - 0.5
return obs
class ReplayBuffer(Dataset):
"""Buffer to store environment transitions."""
def __init__(self, obs_shape, action_shape, capacity, batch_size, device,image_size=84,transform=None):
self.capacity = capacity
self.batch_size = batch_size
self.device = device
self.image_size = image_size
self.transform = transform
# the proprioceptive obs is stored as float32, pixels obs as uint8
obs_dtype = np.float32 if len(obs_shape) == 1 else np.uint8
self.obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.next_obses = np.empty((capacity, *obs_shape), dtype=obs_dtype)
self.actions = np.empty((capacity, *action_shape), dtype=np.float32)
self.rewards = np.empty((capacity, 1), dtype=np.float32)
self.not_dones = np.empty((capacity, 1), dtype=np.float32)
self.idx = 0
self.last_save = 0
self.full = False
def add(self, obs, action, reward, next_obs, done):
np.copyto(self.obses[self.idx], obs)
np.copyto(self.actions[self.idx], action)
np.copyto(self.rewards[self.idx], reward)
np.copyto(self.next_obses[self.idx], next_obs)
np.copyto(self.not_dones[self.idx], not done)
self.idx = (self.idx + 1) % self.capacity
self.full = self.full or self.idx == 0
def sample_proprio(self):
idxs = np.random.randint(
0, self.capacity if self.full else self.idx, size=self.batch_size
)
obses = self.obses[idxs]
next_obses = self.next_obses[idxs]
obses = torch.as_tensor(obses, device=self.device).float()
actions = torch.as_tensor(self.actions[idxs], device=self.device)
rewards = torch.as_tensor(self.rewards[idxs], device=self.device)
next_obses = torch.as_tensor(
next_obses, device=self.device
).float()
not_dones = torch.as_tensor(self.not_dones[idxs], device=self.device)
return obses, actions, rewards, next_obses, not_dones
def sample_cpc(self):
start = time.time()
idxs = np.random.randint(
0, self.capacity if self.full else self.idx, size=self.batch_size
)
obses = self.obses[idxs]
next_obses = self.next_obses[idxs]
pos = obses.copy()
obses = fast_random_crop(obses, self.image_size)
next_obses = fast_random_crop(next_obses, self.image_size)
pos = fast_random_crop(pos, self.image_size)
obses = torch.as_tensor(obses, device=self.device).float()
next_obses = torch.as_tensor(
next_obses, device=self.device
).float()
actions = torch.as_tensor(self.actions[idxs], device=self.device)
rewards = torch.as_tensor(self.rewards[idxs], device=self.device)
not_dones = torch.as_tensor(self.not_dones[idxs], device=self.device)
pos = torch.as_tensor(pos, device=self.device).float()
cpc_kwargs = dict(obs_anchor=obses, obs_pos=pos,
time_anchor=None, time_pos=None)
return obses, actions, rewards, next_obses, not_dones, cpc_kwargs
def save(self, save_dir):
if self.idx == self.last_save:
return
path = os.path.join(save_dir, '%d_%d.pt' % (self.last_save, self.idx))
payload = [
self.obses[self.last_save:self.idx],
self.next_obses[self.last_save:self.idx],
self.actions[self.last_save:self.idx],
self.rewards[self.last_save:self.idx],
self.not_dones[self.last_save:self.idx]
]
self.last_save = self.idx
torch.save(payload, path)
def load(self, save_dir):
chunks = os.listdir(save_dir)
chucks = sorted(chunks, key=lambda x: int(x.split('_')[0]))
for chunk in chucks:
start, end = [int(x) for x in chunk.split('.')[0].split('_')]
path = os.path.join(save_dir, chunk)
payload = torch.load(path)
assert self.idx == start
self.obses[start:end] = payload[0]
self.next_obses[start:end] = payload[1]
self.actions[start:end] = payload[2]
self.rewards[start:end] = payload[3]
self.not_dones[start:end] = payload[4]
self.idx = end
def __getitem__(self, idx):
idx = np.random.randint(
0, self.capacity if self.full else self.idx, size=1
)
idx = idx[0]
obs = self.obses[idx]
action = self.actions[idx]
reward = self.rewards[idx]
next_obs = self.next_obses[idx]
not_done = self.not_dones[idx]
if self.transform:
obs = self.transform(obs)
next_obs = self.transform(next_obs)
return obs, action, reward, next_obs, not_done
def __len__(self):
return self.capacity
class FrameStack(gym.Wrapper):
def __init__(self, env, k):
gym.Wrapper.__init__(self, env)
self._k = k
self._frames = deque([], maxlen=k)
shp = env.observation_space.shape
self.observation_space = gym.spaces.Box(
low=0,
high=1,
shape=((shp[0] * k,) + shp[1:]),
dtype=env.observation_space.dtype
)
self._max_episode_steps = env._max_episode_steps
def reset(self):
obs = self.env.reset()
for _ in range(self._k):
self._frames.append(obs)
return self._get_obs()
def step(self, action):
obs, reward, done, info = self.env.step(action)
self._frames.append(obs)
return self._get_obs(), reward, done, info
def _get_obs(self):
assert len(self._frames) == self._k
return np.concatenate(list(self._frames), axis=0)
"""
Various transforms
"""
class RandomCrop(object):
"""Crop randomly the image in a sample.
Args:
output_size (tuple or int): Desired output size. If int, square crop
is made.
"""
def __init__(self, output_size):
assert isinstance(output_size, (int, tuple))
if isinstance(output_size, int):
self.output_size = (output_size, output_size)
else:
assert len(output_size) == 2
self.output_size = output_size
def __call__(self, image):
h, w = image.shape[1:]
new_h, new_w = self.output_size
top = np.random.randint(0, h - new_h)
left = np.random.randint(0, w - new_w)
image = image[:, top: top + new_h, left: left + new_w]
return image
def random_crop(imgs,output_size):
h, w = imgs.shape[2:]
new_h, new_w = output_size, output_size
if h > new_h:
top = np.random.randint(0, h - new_h)
left = np.random.randint(0, w - new_w)
imgs = imgs[:,:, top: top + new_h, left: left + new_w]
return imgs
def fast_random_crop(imgs, output_size):
"""
Vectorized way to do random crop using sliding windows
and picking out random ones
args:
imgs, batch images with shape (B,C,H,W)
"""
# batch size
n = imgs.shape[0]
img_size = imgs.shape[-1]
crop_max = img_size - output_size
imgs = np.transpose(imgs, (0, 2, 3, 1))
w1 = np.random.randint(0, crop_max, n)
h1 = np.random.randint(0, crop_max, n)
# creates all sliding windows combinations of size (output_size)
windows = view_as_windows(
imgs, (1, output_size, output_size, 1))[..., 0,:,:, 0]
# selects a random window for each batch element
cropped_imgs = windows[np.arange(n), w1, h1]
return cropped_imgs
def random_flip(imgs, prob=0.2):
B = imgs.shape[0]
N = int(prob*B)
flipped_imgs = imgs[..., ::-1].copy()
idxs = np.random.choice(B, size=(N,), replace=False)
imgs[idxs] = flipped_imgs[idxs]
return imgs
def time_flip(imgs,device):
time_flipped_imgs = imgs[:,::-1, ...].copy()
all_imgs = np.concatenate((imgs, time_flipped_imgs), 0)
return all_imgs
def grayscale(imgs,device):
# imgs: b x c x h x w
b, c, h, w = imgs.shape
frames = c // 3
imgs = imgs.view([b,frames,3,h,w])
imgs = imgs[:, :, 0, ...] * 0.2989 + imgs[:, :, 1, ...] * 0.587 + imgs[:, :, 2, ...] * 0.114
imgs = imgs.type(torch.uint8).float()
# assert len(imgs.shape) == 3, imgs.shape
imgs = imgs[:, :, None, :, :]
imgs = imgs * torch.ones([1, 1, 3, 1, 1], dtype=imgs.dtype).float().to(device) # broadcast tiling
return imgs
def random_grayscale(images,device,p=1.):
# images: [B, C, H, W]
gray_images = grayscale(images,device)
rnd = np.random.uniform(0., 1., size=(images.shape[0],))
mask = rnd <= p
mask = torch.from_numpy(mask)
frames = images.shape[1] // 3
images = images.view(*gray_images.shape)
mask = mask[:, None] * torch.ones([1, frames]).type(mask.dtype)
mask = mask.type(images.dtype).to(device)
mask = mask[:, :, None, None, None]
return mask * gray_images + (1 - mask) * images
def random_grayscale_stack(stack,device,p=0.5):
# stack: B X C x H x W, C = num_frames * 3.
bs, channels, h, w = stack.shape
num_frames = channels // 3
#stack = stack.view([-1, 3, h, w])
stack = random_grayscale(stack, device,p=p)
stack = stack.view([bs, -1, h, w])
return stack
def random_rotate(imgs):
k = np.random.randint(4)
imgs = np.ascontiguousarray(np.rot90(imgs,k=k,axes=(-2,-1)))
return imgs
def center_crop_image(image, output_size):
h, w = image.shape[1:]
new_h, new_w = output_size, output_size
top = (h - new_h)//2
left = (w - new_w)//2
image = image[:, top:top + new_h, left:left + new_w]
return image
class CenterCrop(object):
"""Center crop the image in a sample.
Args:
output_size (tuple or int): Desired output size. If int, square crop
is made.
"""
def __init__(self, output_size):
assert isinstance(output_size, (int,))
self.output_size = (output_size, output_size)
def __call__(self, image):
h, w = image.shape[1:]
new_h, new_w = self.output_size
top = (h - new_h)//2
left = (w - new_w)//2
image = image[:, top: top + new_h, left: left + new_w]
return image
class ToTensor(object):
"""Convert ndarrays in sample to Tensors."""
def __call__(self, image,device):
# torch image: C X H X W
return torch.from_numpy(image,)
class Grayscale(object):
"""Convert ndarrays in sample to grayscale randomly."""
def __init__(self, prob):
self.prob = prob
def __call__(self, image):
if self.prob > np.random.uniform():
image = self.rgb2gray(image)
return image
def rgb2gray(self, rgb):
rgb = np.transpose(rgb, (1, 2, 0))
rgb = np.expand_dims(np.dot(rgb[..., :3], [0.2989, 0.5870, 0.1140]), 0)
rgb = np.repeat(rgb, 3, 0)
return rgb.astype(np.uint8)
class Flip(object):
"""Convert ndarrays in sample to flip randomly."""
def __init__(self, prob):
self.prob = prob
def __call__(self, image):
if self.prob > np.random.uniform():
image = self.flip(image)
return image
def flip(self, img):
return np.transpose(img, (0, 2, 1))