sra-trajectory-code / MID /models /trajectron.py
po03087's picture
SRA: MID/LED/MoFlow code + RUNNING.md instructions (code only, no data/ckpts)
d4cbafd verified
Raw
History Blame Contribute Delete
19.9 kB
import torch
import numpy as np
from .encoders.mgcvae import MultimodalGenerativeCVAE
#from model.dataset import get_timesteps_data, restore
# import torch
# import numpy as np
import collections.abc
from torch.utils.data._utils.collate import default_collate
import dill
container_abcs = collections.abc
def restore(data):
"""
In case we dilled some structures to share between multiple process this function will restore them.
If the data input are not bytes we assume it was not dilled in the first place
:param data: Possibly dilled data structure
:return: Un-dilled data structure
"""
if type(data) is bytes:
return dill.loads(data)
return data
def collate(batch):
if len(batch) == 0:
return batch
elem = batch[0]
if elem is None:
return None
elif isinstance(elem, container_abcs.Sequence):
if len(elem) == 4: # We assume those are the maps, map points, headings and patch_size
scene_map, scene_pts, heading_angle, patch_size = zip(*batch)
if heading_angle[0] is None:
heading_angle = None
else:
heading_angle = torch.Tensor(heading_angle)
map = scene_map[0].get_cropped_maps_from_scene_map_batch(scene_map,
scene_pts=torch.Tensor(scene_pts),
patch_size=patch_size[0],
rotation=heading_angle)
return map
transposed = zip(*batch)
return [collate(samples) for samples in transposed]
elif isinstance(elem, container_abcs.Mapping):
neighbor_dict = {key: [d[key] for d in batch] for key in elem}
return dill.dumps(neighbor_dict) if torch.utils.data.get_worker_info() else neighbor_dict
return default_collate(batch)
def get_relative_robot_traj(env, state, node_traj, robot_traj, node_type, robot_type):
_, std = env.get_standardize_params(state[robot_type], node_type=robot_type)
std[0:2] = env.attention_radius[(node_type, robot_type)]
robot_traj_st = env.standardize(robot_traj,
state[robot_type],
node_type=robot_type,
mean=node_traj,
std=std)
robot_traj_st_t = torch.tensor(robot_traj_st, dtype=torch.float)
return robot_traj_st_t
def get_node_timestep_data(env, scene, t, node, state, pred_state,
edge_types, max_ht, max_ft, hyperparams,
scene_graph=None):
"""
Pre-processes the data for a single batch element: node state over time for a specific time in a specific scene
as well as the neighbour data for it.
:param env: Environment
:param scene: Scene
:param t: Timestep in scene
:param node: Node
:param state: Specification of the node state
:param pred_state: Specification of the prediction state
:param edge_types: List of all Edge Types for which neighbours are pre-processed
:param max_ht: Maximum history timesteps
:param max_ft: Maximum future timesteps (prediction horizon)
:param hyperparams: Model hyperparameters
:param scene_graph: If scene graph was already computed for this scene and time you can pass it here
:return: Batch Element
"""
# Node
timestep_range_x = np.array([t - max_ht, t])
timestep_range_y = np.array([t + 1, t + max_ft])
x = node.get(timestep_range_x, state[node.type])
y = node.get(timestep_range_y, pred_state[node.type])
first_history_index = (max_ht - node.history_points_at(t)).clip(0)
_, std = env.get_standardize_params(state[node.type], node.type)
std[0:2] = env.attention_radius[(node.type, node.type)]
rel_state = np.zeros_like(x[0])
rel_state[0:2] = np.array(x)[-1, 0:2]
x_st = env.standardize(x, state[node.type], node.type, mean=rel_state, std=std)
if list(pred_state[node.type].keys())[0] == 'position': # If we predict position we do it relative to current pos
y_st = env.standardize(y, pred_state[node.type], node.type, mean=rel_state[0:2])
else:
y_st = env.standardize(y, pred_state[node.type], node.type)
x_t = torch.tensor(x, dtype=torch.float)
y_t = torch.tensor(y, dtype=torch.float)
x_st_t = torch.tensor(x_st, dtype=torch.float)
y_st_t = torch.tensor(y_st, dtype=torch.float)
# Neighbors
neighbors_data_st = None
neighbors_edge_value = None
if hyperparams['edge_encoding']:
# Scene Graph
scene_graph = scene.get_scene_graph(t,
env.attention_radius,
hyperparams['edge_addition_filter'],
hyperparams['edge_removal_filter']) if scene_graph is None else scene_graph
neighbors_data_st = dict()
neighbors_edge_value = dict()
for edge_type in edge_types:
neighbors_data_st[edge_type] = list()
# We get all nodes which are connected to the current node for the current timestep
connected_nodes = scene_graph.get_neighbors(node, edge_type[1])
if hyperparams['dynamic_edges'] == 'yes':
# We get the edge masks for the current node at the current timestep
edge_masks = torch.tensor(scene_graph.get_edge_scaling(node), dtype=torch.float)
neighbors_edge_value[edge_type] = edge_masks
for connected_node in connected_nodes:
neighbor_state_np = connected_node.get(np.array([t - max_ht, t]),
state[connected_node.type],
padding=0.0)
# Make State relative to node where neighbor and node have same state
_, std = env.get_standardize_params(state[connected_node.type], node_type=connected_node.type)
std[0:2] = env.attention_radius[edge_type]
equal_dims = np.min((neighbor_state_np.shape[-1], x.shape[-1]))
rel_state = np.zeros_like(neighbor_state_np)
rel_state[:, ..., :equal_dims] = x[-1, ..., :equal_dims]
neighbor_state_np_st = env.standardize(neighbor_state_np,
state[connected_node.type],
node_type=connected_node.type,
mean=rel_state,
std=std)
neighbor_state = torch.tensor(neighbor_state_np_st, dtype=torch.float)
neighbors_data_st[edge_type].append(neighbor_state)
# Robot
robot_traj_st_t = None
timestep_range_r = np.array([t, t + max_ft])
if hyperparams['incl_robot_node']:
x_node = node.get(timestep_range_r, state[node.type])
if scene.non_aug_scene is not None:
robot = scene.get_node_by_id(scene.non_aug_scene.robot.id)
else:
robot = scene.robot
robot_type = robot.type
robot_traj = robot.get(timestep_range_r, state[robot_type], padding=0.0)
robot_traj_st_t = get_relative_robot_traj(env, state, x_node, robot_traj, node.type, robot_type)
# Map
map_tuple = None
if hyperparams['use_map_encoding']:
if node.type in hyperparams['map_encoder']:
if node.non_aug_node is not None:
x = node.non_aug_node.get(np.array([t]), state[node.type])
me_hyp = hyperparams['map_encoder'][node.type]
if 'heading_state_index' in me_hyp:
heading_state_index = me_hyp['heading_state_index']
# We have to rotate the map in the opposit direction of the agent to match them
if type(heading_state_index) is list: # infer from velocity or heading vector
heading_angle = -np.arctan2(x[-1, heading_state_index[1]],
x[-1, heading_state_index[0]]) * 180 / np.pi
else:
heading_angle = -x[-1, heading_state_index] * 180 / np.pi
else:
heading_angle = None
scene_map = scene.map[node.type]
map_point = x[-1, :2]
patch_size = hyperparams['map_encoder'][node.type]['patch_size']
map_tuple = (scene_map, map_point, heading_angle, patch_size)
return (first_history_index, x_t, y_t, x_st_t, y_st_t, neighbors_data_st,
neighbors_edge_value, robot_traj_st_t, map_tuple)
def get_timesteps_data(env, scene, t, node_type, state, pred_state,
edge_types, min_ht, max_ht, min_ft, max_ft, hyperparams):
"""
Puts together the inputs for ALL nodes in a given scene and timestep in it.
:param env: Environment
:param scene: Scene
:param t: Timestep in scene
:param node_type: Node Type of nodes for which the data shall be pre-processed
:param state: Specification of the node state
:param pred_state: Specification of the prediction state
:param edge_types: List of all Edge Types for which neighbors are pre-processed
:param max_ht: Maximum history timesteps
:param max_ft: Maximum future timesteps (prediction horizon)
:param hyperparams: Model hyperparameters
:return:
"""
nodes_per_ts = scene.present_nodes(t,
type=node_type,
min_history_timesteps=min_ht,
min_future_timesteps=max_ft,
return_robot=not hyperparams['incl_robot_node'])
batch = list()
nodes = list()
out_timesteps = list()
for timestep in nodes_per_ts.keys():
scene_graph = scene.get_scene_graph(timestep,
env.attention_radius,
hyperparams['edge_addition_filter'],
hyperparams['edge_removal_filter'])
present_nodes = nodes_per_ts[timestep]
for node in present_nodes:
nodes.append(node)
out_timesteps.append(timestep)
batch.append(get_node_timestep_data(env, scene, timestep, node, state, pred_state,
edge_types, max_ht, max_ft, hyperparams,
scene_graph=scene_graph))
if len(out_timesteps) == 0:
return None
return collate(batch), nodes, out_timesteps
class Trajectron(object):
def __init__(self, model_registrar,
hyperparams,
device):
super(Trajectron, self).__init__()
self.hyperparams = hyperparams
#self.log_writer = log_writer
self.device = device
self.curr_iter = 0
self.model_registrar = model_registrar
self.node_models_dict = dict()
self.nodes = set()
self.env = None
self.min_ht = self.hyperparams['minimum_history_length']
self.max_ht = self.hyperparams['maximum_history_length']
self.ph = self.hyperparams['prediction_horizon']
self.state = self.hyperparams['state']
self.state_length = dict()
for state_type in self.state.keys():
self.state_length[state_type] = int(
np.sum([len(entity_dims) for entity_dims in self.state[state_type].values()])
)
self.pred_state = self.hyperparams['pred_state']
def set_environment(self, env):
self.env = env
self.node_models_dict.clear()
edge_types = env.get_edge_types()
for node_type in env.NodeType:
# Only add a Model for NodeTypes we want to predict
if node_type in self.pred_state.keys():
self.node_models_dict[node_type] = MultimodalGenerativeCVAE(env,
node_type,
self.model_registrar,
self.hyperparams,
self.device,
edge_types
)
def set_curr_iter(self, curr_iter):
self.curr_iter = curr_iter
for node_str, model in self.node_models_dict.items():
model.set_curr_iter(curr_iter)
def set_annealing_params(self):
for node_str, model in self.node_models_dict.items():
model.set_annealing_params()
def step_annealers(self, node_type=None):
if node_type is None:
for node_type in self.node_models_dict:
self.node_models_dict[node_type].step_annealers()
else:
self.node_models_dict[node_type].step_annealers()
def train_loss(self, batch, node_type):
(first_history_index,
x_t, y_t, x_st_t, y_st_t,
neighbors_data_st,
neighbors_edge_value,
robot_traj_st_t,
map) = batch
x = x_t.to(self.device)
y = y_t.to(self.device)
x_st_t = x_st_t.to(self.device)
y_st_t = y_st_t.to(self.device)
if robot_traj_st_t is not None:
robot_traj_st_t = robot_traj_st_t.to(self.device)
if type(map) == torch.Tensor:
map = map.to(self.device)
# Run forward pass
model = self.node_models_dict[node_type]
loss = model.train_loss(inputs=x,
inputs_st=x_st_t,
first_history_indices=first_history_index,
labels=y,
labels_st=y_st_t,
neighbors=restore(neighbors_data_st),
neighbors_edge_value=restore(neighbors_edge_value),
robot=robot_traj_st_t,
map=map,
prediction_horizon=self.ph)
return loss
def get_latent(self, batch, node_type):
(first_history_index,
x_t, y_t, x_st_t, y_st_t,
neighbors_data_st,
neighbors_edge_value,
robot_traj_st_t,
map) = batch
x = x_t.to(self.device)
y = y_t.to(self.device)
x_st_t = x_st_t.to(self.device)
y_st_t = y_st_t.to(self.device)
if robot_traj_st_t is not None:
robot_traj_st_t = robot_traj_st_t.to(self.device)
if type(map) == torch.Tensor:
map = map.to(self.device)
# Run forward pass
model = self.node_models_dict[node_type]
feat_x = model.get_latent(inputs=x,
inputs_st=x_st_t,
first_history_indices=first_history_index,
labels=y,
labels_st=y_st_t,
neighbors=restore(neighbors_data_st),
neighbors_edge_value=restore(neighbors_edge_value),
robot=robot_traj_st_t,
map=map,
prediction_horizon=self.ph)
return feat_x
def eval_loss(self, batch, node_type):
(first_history_index,
x_t, y_t, x_st_t, y_st_t,
neighbors_data_st,
neighbors_edge_value,
robot_traj_st_t,
map) = batch
x = x_t.to(self.device)
y = y_t.to(self.device)
x_st_t = x_st_t.to(self.device)
y_st_t = y_st_t.to(self.device)
if robot_traj_st_t is not None:
robot_traj_st_t = robot_traj_st_t.to(self.device)
if type(map) == torch.Tensor:
map = map.to(self.device)
# Run forward pass
model = self.node_models_dict[node_type]
nll = model.eval_loss(inputs=x,
inputs_st=x_st_t,
first_history_indices=first_history_index,
labels=y,
labels_st=y_st_t,
neighbors=restore(neighbors_data_st),
neighbors_edge_value=restore(neighbors_edge_value),
robot=robot_traj_st_t,
map=map,
prediction_horizon=self.ph)
return nll.cpu().detach().numpy()
def predict(self,
scene,
timesteps,
ph,
num_samples=1,
min_future_timesteps=0,
min_history_timesteps=1,
z_mode=False,
gmm_mode=False,
full_dist=True,
all_z_sep=False,
pcmd=False):
predictions_dict = {}
for node_type in self.env.NodeType:
if node_type not in self.pred_state:
continue
model = self.node_models_dict[node_type]
# Get Input data for node type and given timesteps
batch = get_timesteps_data(env=self.env, scene=scene, t=timesteps, node_type=node_type, state=self.state,
pred_state=self.pred_state, edge_types=model.edge_types,
min_ht=min_history_timesteps, max_ht=self.max_ht, min_ft=min_future_timesteps,
max_ft=min_future_timesteps, hyperparams=self.hyperparams)
# There are no nodes of type present for timestep
if batch is None:
continue
(first_history_index,
x_t, y_t, x_st_t, y_st_t,
neighbors_data_st,
neighbors_edge_value,
robot_traj_st_t,
map), nodes, timesteps_o = batch
x = x_t.to(self.device)
x_st_t = x_st_t.to(self.device)
if robot_traj_st_t is not None:
robot_traj_st_t = robot_traj_st_t.to(self.device)
if type(map) == torch.Tensor:
map = map.to(self.device)
# Run forward pass
predictions = model.predict(inputs=x,
inputs_st=x_st_t,
first_history_indices=first_history_index,
neighbors=neighbors_data_st,
neighbors_edge_value=neighbors_edge_value,
robot=robot_traj_st_t,
map=map,
prediction_horizon=ph,
num_samples=num_samples,
z_mode=z_mode,
gmm_mode=gmm_mode,
full_dist=full_dist,
all_z_sep=all_z_sep,
pcmd=pcmd)
predictions_np = predictions.cpu().detach().numpy()
# Assign predictions to node
for i, ts in enumerate(timesteps_o):
if ts not in predictions_dict.keys():
predictions_dict[ts] = dict()
predictions_dict[ts][nodes[i]] = np.transpose(predictions_np[:, [i]], (1, 0, 2, 3))
return predictions_dict