Spaces:
Sleeping
Sleeping
File size: 5,032 Bytes
fe7e262 | 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 | import json
import logging
import math
import pickle
import shutil
from dataclasses import dataclass, fields
from pathlib import Path
import numpy as np
import questionary
import torch
import torch.nn.functional as F
_logger = None
_level = None
@dataclass
class HyperParam:
beat_div: int
ticks_per_beat: int
seed: int
learning_rate: float
learning_rate_min: float
adam_b1: float
adam_b2: float
sched_T: int
warmup_epochs: int
vocab_size: int
token_class: int
condition_class: int
d_model: int
d_bottleneck: int
num_layers: int
num_layers_encoder: int
num_heads: int
activation: str
dropout: float
max_seq_len: int
max_position_embeddings: int
loss_weight: float = 1.0
def _get_logger():
global _logger
if _logger is None:
_logger = logging.getLogger("picogen2")
return _logger
class Logger:
def setLevel(self, level):
global _level, _logger
_level = level.upper()
_get_logger().setLevel(_level)
def __getattr__(self, name):
return getattr(_get_logger(), name)
def __repr__(self):
return repr(_get_logger())
logger = Logger()
def check_task_done(task: str, output_dir: Path):
done_file = output_dir / f"done_{task}"
return done_file.exists()
def mark_task_done(task: str, output_dir: Path):
done_file = output_dir / f"done_{task}"
done_file.touch()
def song_dir_name(index: int):
return "{:04d}".format(index)
def load_config(config_file):
config = json.loads(config_file.read_text())
hp = HyperParam(**config)
logger.info("checkpoint model config:")
for v in fields(hp):
logger.info(f"\t{v.name}: {getattr(hp, v.name)}")
return hp
def init_ckpt_dir(ckpt_dir, config_file, config_name="config"):
t_path = (ckpt_dir / config_name).with_suffix(config_file.suffix)
if not t_path.exists():
ckpt_dir.mkdir(exist_ok=True)
shutil.copyfile(config_file, t_path)
else:
# check if config is the same
if config_file.read_text() != t_path.read_text():
override = questionary.confirm(
f'Config file "{config_file}" is not same with checkpoint "{t_path}", override?',
default=False,
).ask()
if override:
shutil.copyfile(config_file, t_path)
else:
print("Confliction between config file and checkpoint. Exit.")
exit()
# raise ValueError(f'config file {config_file} and {t_path} are not the same')
def save_checkpoint(filepath, obj, verbose=False):
print("Saving checkpoint to {} ... ".format(filepath), end="") if verbose else None
torch.save(obj, filepath)
print("Done.") if verbose else None
def scan_checkpoint(cp_dir, prefix):
# pattern = os.path.join(cp_dir, prefix + '????????')
# cp_list = glob.glob(pattern)
cp_list = list(cp_dir.glob(f"{prefix}*"))
if len(cp_list) == 0:
return None
return sorted(cp_list, key=lambda n: int(n.stem.split("_")[-1]))[-1]
def load_checkpoint(filepath: Path, device="cpu"):
assert filepath.is_file()
logger.info("Loading '{}'".format(filepath))
checkpoint_dict = torch.load(filepath, map_location=device, weights_only=False)
logger.info("Done.")
return checkpoint_dict
def downbeat_time_to_index(beats, downbeats):
downbeat_indices = []
beats = np.array(beats)
for downbeat in downbeats:
idx = np.argmin(np.abs(beats - downbeat))
downbeat_indices.append(idx)
return downbeat_indices
def top_p(logits, thres=0.9, temperature=1.0):
assert logits.dim() == 2, logits.shape
sorted_logits, sorted_indices = torch.sort(logits, descending=True)
cum_probs = torch.cumsum(F.softmax(sorted_logits / temperature, dim=-1), dim=-1)
sorted_indices_to_remove = cum_probs > thres
sorted_indices_to_remove[:, 0] = False
sorted_logits[sorted_indices_to_remove] = float("-inf")
return sorted_logits.scatter(1, sorted_indices, sorted_logits)
def top_k(logits, thres=0.9):
assert logits.dim() == 2
k = math.ceil((1 - thres) * logits.shape[-1])
val, ind = torch.topk(logits, k)
probs = torch.full_like(logits, float("-inf"))
probs.scatter_(1, ind, val)
return probs
def normalize(audio, min_y=-1.0, max_y=1.0, eps=1e-6):
assert len(audio.shape) == 1
max_y -= eps
min_y += eps
amax = audio.max()
amin = audio.min()
audio = (max_y - min_y) * (audio - amin) / (amax - amin) + min_y
return audio
def pickle_load(file):
return pickle.load(open(file, "rb"))
def pickle_save(data, file):
pickle.dump(data, open(file, "wb"))
def get_downbeat_indices(beats, downbeats):
beats = np.array(beats)
downbeats = np.array(downbeats)
downbeat_indices = []
for downbeat in downbeats:
idx = np.argmin(np.abs(beats - downbeat))
downbeat_indices.append(idx)
return np.array(downbeat_indices)
|