Spaces:
Running
Running
File size: 10,552 Bytes
17f1f54 | 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 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 | # coding: utf-8
import copy
import glob
import os
import os.path
import errno
import shutil
import random
import logging
import yaml
import torch
import numpy as np
from torch import nn, Tensor
from dtw import dtw
from logging import Logger
from typing import Optional
class ConfigurationError(Exception):
""" Custom exception for misspecifications of configuration """
def make_model_dir(model_dir: str, overwrite=False, model_continue=False) -> str:
"""
Create a new directory for the model.
:param model_dir: path to model directory
:param overwrite: whether to overwrite an existing directory
:param model_continue: whether to continue from a checkpoint
:return: path to model directory
"""
# If model already exists
if os.path.isdir(model_dir):
# If model continuing from checkpoint
if model_continue:
# Return the model_dir
return model_dir
# If set to not overwrite, this will error
if not overwrite:
raise FileExistsError(
"Model directory exists and overwriting is disabled.")
# If overwrite, recursively delete previous directory to start with empty dir again
for file in os.listdir(model_dir):
file_path = os.path.join(model_dir, file)
if os.path.isfile(file_path):
os.remove(file_path)
shutil.rmtree(model_dir, ignore_errors=True)
# If model directly doesn't exist, make it and return
if not os.path.exists(model_dir):
os.makedirs(model_dir)
return model_dir
def make_logger(model_dir: str, log_file: str = "train.log") -> Logger:
"""
Create a logger for logging the training process.
:param model_dir: path to logging directory
:param log_file: path to logging file
:return: logger object
"""
logger = logging.getLogger(__name__)
logger.setLevel(level=logging.DEBUG)
fh = logging.FileHandler(
"{}/{}".format(model_dir, log_file))
fh.setLevel(level=logging.DEBUG)
logger.addHandler(fh)
sh = logging.StreamHandler()
sh.setLevel(logging.INFO)
formatter = logging.Formatter('%(asctime)s %(message)s')
fh.setFormatter(formatter)
sh.setFormatter(formatter)
logging.getLogger("").addHandler(sh)
logger.info("Sign-IDD: Iconicity Disentangled Diffusion for Sign Language Production")
return logger
def log_cfg(cfg: dict, logger: Logger, prefix: str = "cfg") -> None:
"""
Write configuration to log.
:param cfg: configuration to log
:param logger: logger that defines where log is written to
:param prefix: prefix for logging
"""
for k, v in cfg.items():
if isinstance(v, dict):
p = '.'.join([prefix, k])
log_cfg(v, logger, prefix=p)
else:
p = '.'.join([prefix, k])
logger.info("{:34s} : {}".format(p, v))
def clones(module: nn.Module, n: int) -> nn.ModuleList:
"""
Produce N identical layers. Transformer helper function.
:param module: the module to clone
:param n: clone this many times
:return cloned modules
"""
return nn.ModuleList([copy.deepcopy(module) for _ in range(n)])
def subsequent_mask(size: int) -> Tensor:
"""
Mask out subsequent positions (to prevent attending to future positions)
Transformer helper function.
:param size: size of mask (2nd and 3rd dim)
:return: Tensor with 0s and 1s of shape (1, size, size)
"""
mask = np.triu(np.ones((1, size, size)), k=1).astype('uint8')
return torch.from_numpy(mask) == 0 # Turns it into True and False's
# Subsequent mask of two sizes
def uneven_subsequent_mask(x_size: int, y_size: int) -> Tensor:
"""
Mask out subsequent positions (to prevent attending to future positions)
Transformer helper function.
:param size: size of mask (2nd and 3rd dim)
:return: Tensor with 0s and 1s of shape (1, size, size)
"""
mask = np.triu(np.ones((1, x_size, y_size)), k=1).astype('uint8')
return torch.from_numpy(mask) == 0 # Turns it into True and False's
def set_seed(seed: int) -> None:
"""
Set the random seed for modules torch, numpy and random.
:param seed: random seed
"""
torch.manual_seed(seed)
np.random.seed(seed)
random.seed(seed)
def load_config(path="configs/default.yaml") -> dict:
"""
Loads and parses a YAML configuration file.
:param path: path to YAML configuration file
:return: configuration dictionary
"""
with open(path, 'r') as ymlfile:
cfg = yaml.safe_load(ymlfile)
return cfg
def bpe_postprocess(string) -> str:
"""
Post-processor for BPE output. Recombines BPE-split tokens.
:param string:
:return: post-processed string
"""
return string.replace("@@ ", "")
def get_latest_checkpoint(ckpt_dir, post_fix="_every" ) -> Optional[str]:
"""
Returns the latest checkpoint (by time) from the given directory, of either every validation step or best
If there is no checkpoint in this directory, returns None
:param ckpt_dir: directory of checkpoint
:param post_fixe: type of checkpoint, either "_every" or "_best"
:return: latest checkpoint file
"""
# Find all the every validation checkpoints
list_of_files = glob.glob("{}/*{}.ckpt".format(ckpt_dir,post_fix))
latest_checkpoint = None
if list_of_files:
latest_checkpoint = max(list_of_files, key=os.path.getctime)
return latest_checkpoint
def load_checkpoint(path: str, use_cuda: bool = True) -> dict:
"""
Load model from saved checkpoint.
:param path: path to checkpoint
:param use_cuda: using cuda or not
:return: checkpoint (dict)
"""
assert os.path.isfile(path), "Checkpoint %s not found" % path
checkpoint = torch.load(path, map_location='cuda' if use_cuda else 'cpu')
return checkpoint
def freeze_params(module: nn.Module) -> None:
"""
Freeze the parameters of this module,
i.e. do not update them during training
:param module: freeze parameters of this module
"""
for _, p in module.named_parameters():
p.requires_grad = False
def symlink_update(target, link_name):
try:
os.symlink(target, link_name)
except FileExistsError as e:
if e.errno == errno.EEXIST:
os.remove(link_name)
os.symlink(target, link_name)
else:
raise e
def calculate_dtw(references, hypotheses):
"""
Calculate the DTW costs between a list of references and hypotheses
:param references: list of reference sequences to compare against
:param hypotheses: list of hypothesis sequences to fit onto the reference
:return: dtw_scores: list of DTW costs
"""
# Euclidean norm is the cost function, difference of coordinates
euclidean_norm = lambda x, y: np.sum(np.abs(x - y))
dtw_scores = []
# Remove the BOS frame from the hypothesis
# hypotheses = hypotheses[:, 1:] # Non-autoregressive annotation
# For each reference in the references list
for i, ref in enumerate(references):
# Cut the reference down to the max count value
_ , ref_max_idx = torch.max(ref[:, -1], 0)
if ref_max_idx == 0: ref_max_idx += 1
# Cut down frames by to the max counter value, and chop off counter from joints
ref_count = ref[:ref_max_idx,:-1].cpu().numpy()
# Cut the hypothesis down to the max count value
hyp = hypotheses[i]
_, hyp_max_idx = torch.max(hyp[:, -1], 0)
if hyp_max_idx == 0: hyp_max_idx += 1
# Cut down frames by to the max counter value, and chop off counter from joints
hyp_count = hyp[:hyp_max_idx,:-1].cpu().numpy()
# Calculate DTW of the reference and hypothesis, using euclidean norm
d, cost_matrix, acc_cost_matrix, path = dtw(ref_count, hyp_count, dist=euclidean_norm)
# Normalise the dtw cost by sequence length
d = d/acc_cost_matrix.shape[0]
dtw_scores.append(d)
# Return dtw scores and the hypothesis with altered timing
return dtw_scores
def getSkeletalModelStructure():
return (
# head
(1, 0),
(1, 1), # 中心
(1, 2),
# left arm
(2, 3),
(3, 4),
(1, 5),
(5, 6),
(6, 7), # 舍弃
(7, 8),
(8, 9),
(9, 10),
(10, 11),
(11, 12),
(8, 13),
(13, 14),
(14, 15),
(15, 16),
(8, 17),
(17, 18),
(18, 19),
(19, 20),
(8, 21),
(21, 22),
(22, 23),
(23, 24),
(8, 25),
(25, 26),
(26, 27),
(27, 28),
(4, 29),
(29, 30),
(30, 31),
(31, 32),
(32, 33),
(29, 34),
(34, 35),
(35, 36),
(36, 37),
(29, 38),
(38, 39),
(39, 40),
(40, 41),
(29, 42),
(42, 43),
(43, 44),
(44, 45),
(29, 46),
(46, 47),
(47, 48),
(48, 49),
)
def getSkeletalParentsDict():
"""
Create a parents dictionary for PINN from the skeletal structure.
Returns a dict mapping child joint index to parent joint index.
"""
skeleton_structure = getSkeletalModelStructure()
parents_dict = {}
for parent, child in skeleton_structure:
if child not in parents_dict:
parents_dict[child] = parent
return parents_dict
def get_hand_joint_indices() -> tuple[list, list]:
# Based on your skeleton indexing (0..49),
# left-hand joints: 8..28, right-hand: 29..49
left = list(range(8, 29))
right = list(range(29, 50))
return left, right
def make_joint_channel_masks(num_joints: int = 50, dims: int = 3, device="cpu"):
"""
Returns (mask_body, mask_hand) as [1, 1, num_joints*dims] boolean tensors.
Each True selects ALL dims (x,y,z) for that joint.
"""
handL, handR = get_hand_joint_indices()
hand_set = set(handL + handR)
body_joints = [j for j in range(num_joints) if j not in hand_set]
def joints_to_mask(jidx):
m = torch.zeros(num_joints * dims, dtype=torch.bool, device=device)
for j in jidx:
start = j * dims
m[start:start + dims] = True
return m.view(1, 1, -1)
mask_hand = joints_to_mask(list(hand_set))
mask_body = joints_to_mask(body_joints)
return mask_body, mask_hand
|