Spaces:
Sleeping
Sleeping
File size: 5,678 Bytes
add142e 26ea7e5 add142e 26ea7e5 add142e | 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 | import os
import re
import copy
import time
import torch
import random
import datetime
import numpy as np
def seed_everything(seed):
"""
Seeds basic parameters for reproductibility of results.
Args:
seed (int): Number of the seed.
"""
random.seed(seed)
os.environ["PYTHONHASHSEED"] = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.backends.cudnn.deterministic = False # True
torch.backends.cudnn.benchmark = True # False
def save_model_weights(model, filename, verbose=1, cp_folder=""):
"""
Saves the weights of a PyTorch model.
Args:
model (torch model): Model to save the weights of.
filename (str): Name of the checkpoint.
verbose (int, optional): Whether to display infos. Defaults to 1.
cp_folder (str, optional): Folder to save to. Defaults to "".
"""
if verbose:
print(f"\n -> Saving weights to {os.path.join(cp_folder, filename)}\n")
torch.save(model.state_dict(), os.path.join(cp_folder, filename))
def load_model_weights(model, filename, verbose=1, cp_folder="", strict=True):
"""
Loads the weights of a PyTorch model. The exception handles cpu/gpu incompatibilities.
Args:
model (torch model): Model to load the weights to.
filename (str): Name of the checkpoint.
verbose (int, optional): Whether to display infos. Defaults to 1.
cp_folder (str, optional): Folder to load from. Defaults to "".
strict (str, optional): Whether to use strict weight loading. Defaults to True.
Returns:
torch model: Model with loaded weights.
"""
state_dict = torch.load(os.path.join(cp_folder, filename), map_location="cpu")
try:
try:
model.load_state_dict(state_dict, strict=strict)
except BaseException:
state_dict_ = {}
for k, v in state_dict.items():
state_dict_[re.sub("module.", "", k)] = v
model.load_state_dict(state_dict_, strict=strict)
except BaseException:
try: # REMOVE CLASSIFIER
state_dict_ = copy.deepcopy(state_dict)
try:
del (
state_dict_["encoder.classifier.weight"],
state_dict_["encoder.classifier.bias"],
)
except KeyError:
del (
state_dict_["encoder.head.fc.weight"],
state_dict_["encoder.head.fc.bias"],
)
model.load_state_dict(state_dict_, strict=strict)
except BaseException: # REMOVE LOGITS
try:
for k in ["logits.weight", "logits.bias"]:
state_dict.pop(k, None)
model.load_state_dict(state_dict, strict=strict)
except BaseException:
state_dict.pop("encoder.conv_stem.weight", None)
model.load_state_dict(state_dict, strict=strict)
if verbose:
print(
f"\n -> Loading encoder weights from {os.path.join(cp_folder, filename)}\n"
)
return model
def count_parameters(model, all=False):
"""
Count the parameters of a model.
Args:
model (torch model): Model to count the parameters of.
all (bool, optional): Whether to count not trainable parameters. Defaults to False.
Returns:
int: Number of parameters.
"""
if all:
return sum(p.numel() for p in model.parameters())
else:
return sum(p.numel() for p in model.parameters() if p.requires_grad)
def worker_init_fn(worker_id):
"""
Handles PyTorch x Numpy seeding issues.
Args:
worker_id (int]): Id of the worker.
"""
np.random.seed(np.random.get_state()[1][0] + worker_id)
def sync_across_gpus(t, world_size):
"""
Synchronizes predictions accross all gpus.
Args:
t (torch tensor): Tensor to synchronzie
world_size (int): World size.
Returns:
torch tensor: Synced tensor.
"""
torch.distributed.barrier()
gather_t_tensor = [torch.ones_like(t) for _ in range(world_size)]
torch.distributed.all_gather(gather_t_tensor, t)
return torch.cat(gather_t_tensor)
def init_distributed(cfg):
"""
Initializes stuff for torch distributed training.
Args:
cfg (Config): Config.
"""
cfg.distributed = False
if "WORLD_SIZE" in os.environ:
cfg.distributed = int(os.environ["WORLD_SIZE"]) > 1
if cfg.distributed:
cfg.local_rank = int(os.environ["LOCAL_RANK"])
if cfg.local_rank == 0:
print("- Training in distributed mode with multiple GPUs.")
time.sleep(1)
device = "cuda:%d" % cfg.local_rank
cfg.device = device
torch.cuda.set_device(cfg.local_rank)
torch.distributed.init_process_group(
backend="nccl",
init_method="env://",
timeout=datetime.timedelta(seconds=180),
)
cfg.world_size = torch.distributed.get_world_size()
cfg.rank = torch.distributed.get_rank()
print(
f"Process {cfg.rank}/{cfg.world_size} - device {device} - local rank {cfg.local_rank}"
)
# syncing the random seed
cfg.seed = int(
sync_across_gpus(torch.Tensor([cfg.seed]).to(device), cfg.world_size)
.detach()
.cpu()
.numpy()[0]
)
else:
print("- Training with one GPU.")
cfg.local_rank = 0
cfg.world_size = 1
cfg.rank = 0 # global rank
device = "cuda:0"
cfg.device = device
|