Spaces:
Runtime error
Runtime error
File size: 31,893 Bytes
64ec292 | 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 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 | import argparse
import os
import random
import socket
import time
from typing import Dict, List, Tuple, Union
import numpy as np
import soundfile as sf
import torch
import torch.distributed as dist
import wandb
import yaml
from ml_collections import ConfigDict
from omegaconf import OmegaConf
from torch import nn
def parse_args_train(
dict_args: Union[argparse.Namespace, Dict, None],
) -> argparse.Namespace:
"""
Parse command-line arguments for training configuration.
This function constructs an argument parser for model, dataset, training, and logging
options, merges overrides from a provided dictionary (if any), and returns the parsed
arguments. If `dict_args` is None, the arguments are parsed from `sys.argv`.
Args:
dict_args (Dict | None): Optional dictionary of argument overrides. Keys should
match the defined CLI options.
Returns:
argparse.Namespace: Parsed arguments namespace containing all configuration
values required for training.
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"--model_type",
type=str,
default="mdx23c",
help="One of mdx23c, htdemucs, segm_models, mel_band_roformer, bs_roformer, swin_upernet, bandit",
)
parser.add_argument("--config_path", type=str, help="path to config file")
parser.add_argument(
"--start_check_point",
type=str,
default="",
help="Initial checkpoint to start training",
)
parser.add_argument(
"--load_optimizer",
action="store_true",
help="Load optimizer state from checkpoint (if available)",
)
parser.add_argument(
"--load_scheduler",
action="store_true",
help="Load scheduler state from checkpoint (if available)",
)
parser.add_argument(
"--load_epoch",
action="store_true",
help="Load epoch number from checkpoint (if available)",
)
parser.add_argument(
"--load_best_metric",
action="store_true",
help="Load best metric from checkpoint (if available)",
)
parser.add_argument(
"--load_all_metrics",
action="store_true",
help="Load all metrics from checkpoint (if available)",
)
parser.add_argument(
"--load_all_losses",
action="store_true",
help="Load all losses from checkpoint (if available)",
)
parser.add_argument(
"--safe_mode", action="store_true", help="Ignore forward errors"
)
parser.add_argument(
"--results_path",
type=str,
help="path to folder where results will be stored (weights, metadata)",
)
parser.add_argument(
"--data_path",
nargs="+",
type=str,
help="Dataset data paths. You can provide several folders.",
)
parser.add_argument(
"--dataset_type",
type=int,
default=1,
help="Dataset type. Must be one of: 1, 2, 3, 4, 5, 6, 7. Details here: https://github.com/ZFTurbo/Music-Source-Separation-Training/blob/main/docs/dataset_types.md",
)
parser.add_argument(
"--valid_path",
nargs="+",
type=str,
help="validation data paths. You can provide several folders.",
)
parser.add_argument(
"--num_workers", type=int, default=0, help="dataloader num_workers"
)
parser.add_argument(
"--pin_memory", action="store_true", help="dataloader pin_memory"
)
parser.add_argument("--seed", type=int, default=0, help="random seed")
parser.add_argument(
"--device_ids", nargs="+", type=int, default=[0], help="list of gpu ids"
)
parser.add_argument(
"--loss",
type=str,
nargs="+",
choices=[
"masked_loss",
"mse_loss",
"l1_loss",
"multistft_loss",
"spec_masked_loss",
"spec_rmse_loss",
"log_wmse_loss",
"l1_snr_loss",
"l1_snr_db_loss",
"stft_l1_snr_db_loss",
"multi_l1_snr_db_loss",
],
default=["masked_loss"],
help="List of loss functions to use",
)
parser.add_argument(
"--masked_loss_coef", type=float, default=1.0, help="Coef for loss"
)
parser.add_argument(
"--mse_loss_coef", type=float, default=1.0, help="Coef for loss"
)
parser.add_argument("--l1_loss_coef", type=float, default=1.0, help="Coef for loss")
parser.add_argument(
"--log_wmse_loss_coef", type=float, default=1.0, help="Coef for loss"
)
parser.add_argument(
"--multistft_loss_coef", type=float, default=0.001, help="Coef for loss"
)
parser.add_argument(
"--spec_masked_loss_coef", type=float, default=1, help="Coef for loss"
)
parser.add_argument(
"--spec_rmse_loss_coef", type=float, default=1, help="Coef for loss"
)
parser.add_argument(
"--l1_snr_loss_coef", type=float, default=1.0, help="Coef for L1-SNR loss"
)
parser.add_argument(
"--l1_snr_db_loss_coef", type=float, default=1.0, help="Coef for L1-SNR-DB loss"
)
parser.add_argument(
"--stft_l1_snr_db_loss_coef",
type=float,
default=1.0,
help="Coef for STFT-L1-SNR-DB loss",
)
parser.add_argument(
"--multi_l1_snr_db_loss_coef",
type=float,
default=1.0,
help="Coef for Multi-L1-SNR-DB loss",
)
parser.add_argument("--wandb_key", type=str, default="", help="wandb API Key")
parser.add_argument("--wandb_offline", action="store_true", help="local wandb")
parser.add_argument(
"--pre_valid", action="store_true", help="Run validation before training"
)
parser.add_argument(
"--metrics",
nargs="+",
type=str,
default=["sdr"],
choices=[
"k_sdr",
"sdr",
"l1_freq",
"si_sdr",
"log_wmse",
"aura_stft",
"aura_mrstft",
"bleedless",
"fullness",
"l1_snr",
],
help="List of metrics to use.",
)
parser.add_argument(
"--metric_for_scheduler",
default="sdr",
choices=[
"k_sdr",
"sdr",
"l1_freq",
"si_sdr",
"log_wmse",
"aura_stft",
"aura_mrstft",
"bleedless",
"fullness",
"l1_snr",
],
help="Metric which will be used for scheduler.",
)
parser.add_argument(
"--train_lora_peft", action="store_true", help="Training with LoRA from peft"
)
parser.add_argument(
"--train_lora_loralib",
action="store_true",
help="Training with LoRA from loralib",
)
parser.add_argument(
"--lora_checkpoint_peft",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
parser.add_argument(
"--lora_checkpoint_loralib",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
parser.add_argument(
"--each_metrics_in_name",
action="store_true",
help="All stems in naming checkpoints",
)
parser.add_argument(
"--use_standard_loss",
action="store_true",
help="Roformers will use provided loss instead of internal",
)
parser.add_argument(
"--save_weights_every_epoch",
action="store_true",
help="Weights will be saved every epoch with all metric values",
)
parser.add_argument(
"--persistent_workers",
action="store_true",
help="dataloader persistent_workers",
)
parser.add_argument(
"--prefetch_factor", type=int, default=None, help="dataloader prefetch_factor"
)
parser.add_argument(
"--set_per_process_memory_fraction",
action="store_true",
help="using only VRAM, no RAM",
)
parser.add_argument(
"--load_only_compatible_weights",
action="store_true",
help="using only VRAM, no RAM",
)
parser.add_argument(
"--freeze_layers",
nargs="+",
type=str,
help="List of layers to freeze. Use prefixes e.g. layer1 - will freeze all layers whose names "
"starts with layer1. You can set mulitple parameters.",
)
if dict_args is not None:
args = parser.parse_args([])
args_dict = vars(args)
args_dict.update(dict_args)
args = argparse.Namespace(**args_dict)
else:
args = parser.parse_args()
if args.metric_for_scheduler not in args.metrics:
args.metrics += [args.metric_for_scheduler]
get_internal_loss = (
args.model_type in ("mel_band_conformer",) or "roformer" in args.model_type
) and not args.use_standard_loss
if get_internal_loss:
args.loss = [f"{args.model_type}_loss"]
return args
def parse_args_valid(dict_args: Union[Dict, None]) -> argparse.Namespace:
"""
Parse command-line arguments for validation configuration.
Builds the CLI for model selection, configuration paths, validation data
locations, output/spectrogram saving options, device/runtime settings, and
evaluation metrics. If `dict_args` is provided, its key–value pairs override
or set the parsed arguments; otherwise arguments are read from `sys.argv`.
Args:
dict_args (Union[Dict, None]): Optional mapping of argument names to values
used to override or supply CLI options programmatically.
Returns:
argparse.Namespace: Parsed arguments namespace containing all validation
configuration values.
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"--model_type",
type=str,
default="mdx23c",
help="One of mdx23c, htdemucs, segm_models, mel_band_roformer,"
" bs_roformer, swin_upernet, bandit",
)
parser.add_argument("--config_path", type=str, help="Path to config file")
parser.add_argument(
"--start_check_point",
type=str,
default="",
help="Initial checkpoint to valid weights",
)
parser.add_argument("--valid_path", nargs="+", type=str, help="Validate path")
parser.add_argument(
"--store_dir", type=str, default="", help="Path to store results as wav file"
)
parser.add_argument(
"--draw_spectro",
type=float,
default=0,
help="If --store_dir is set then code will generate spectrograms for resulted stems as well."
" Value defines for how many seconds os track spectrogram will be generated.",
)
parser.add_argument(
"--device_ids", nargs="+", type=int, default=[0], help="List of gpu ids"
)
parser.add_argument(
"--num_workers", type=int, default=0, help="Dataloader num_workers"
)
parser.add_argument(
"--pin_memory", action="store_true", help="Dataloader pin_memory"
)
parser.add_argument(
"--extension", type=str, default="wav", help="Choose extension for validation"
)
parser.add_argument(
"--use_tta",
action="store_true",
help="Flag adds test time augmentation during inference (polarity and channel inverse)."
"While this triples the runtime, it reduces noise and slightly improves prediction quality.",
)
parser.add_argument(
"--metrics",
nargs="+",
type=str,
default=["sdr"],
choices=[
"k_sdr",
"sdr",
"l1_freq",
"si_sdr",
"neg_log_wmse",
"aura_stft",
"aura_mrstft",
"bleedless",
"fullness",
"l1_snr",
],
help="List of metrics to use.",
)
parser.add_argument(
"--lora_checkpoint_peft",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
parser.add_argument(
"--lora_checkpoint_loralib",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
if dict_args is not None:
args = parser.parse_args([])
args_dict = vars(args)
args_dict.update(dict_args)
args = argparse.Namespace(**args_dict)
else:
args = parser.parse_args()
return args
def parse_args_inference(dict_args: Union[Dict, None]) -> argparse.Namespace:
"""
Parse command-line arguments for inference configuration.
Builds the CLI for model selection, configuration path, input/output handling,
device/runtime options, test-time augmentation, and optional LoRA checkpoints.
If `dict_args` is provided, its key–value pairs override or supply CLI options
programmatically; otherwise, arguments are read from `sys.argv`.
Args:
dict_args (Union[Dict, None]): Optional mapping of argument names to values
used to override or supply CLI options programmatically.
Returns:
argparse.Namespace: Parsed arguments namespace containing all inference
configuration values.
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"--model_type",
type=str,
default="mdx23c",
help="One of bandit, bandit_v2, bs_roformer, htdemucs, mdx23c, mel_band_roformer,"
" scnet, scnet_unofficial, segm_models, swin_upernet, torchseg",
)
parser.add_argument("--config_path", type=str, help="path to config file")
parser.add_argument(
"--start_check_point",
type=str,
default="",
help="Initial checkpoint to valid weights",
)
parser.add_argument(
"--input_folder", type=str, help="folder with mixtures to process"
)
parser.add_argument(
"--store_dir", type=str, default="", help="path to store results as wav file"
)
parser.add_argument(
"--draw_spectro",
type=float,
default=0,
help="Code will generate spectrograms for resulted stems."
" Value defines for how many seconds os track spectrogram will be generated.",
)
parser.add_argument(
"--device_ids", nargs="+", type=int, default=0, help="list of gpu ids"
)
parser.add_argument(
"--extract_instrumental",
action="store_true",
help="invert vocals to get instrumental if provided",
)
parser.add_argument(
"--disable_detailed_pbar",
action="store_true",
help="disable detailed progress bar",
)
parser.add_argument(
"--force_cpu",
action="store_true",
help="Force the use of CPU even if CUDA is available",
)
parser.add_argument(
"--flac_file", action="store_true", help="Output flac file instead of wav"
)
parser.add_argument(
"--pcm_type",
type=str,
choices=["PCM_16", "PCM_24", "FLOAT"],
default="FLOAT",
help="PCM type for FLAC files (PCM_16 or PCM_24)",
)
parser.add_argument(
"--use_tta",
action="store_true",
help="Flag adds test time augmentation during inference (polarity and channel inverse)."
"While this triples the runtime, it reduces noise and slightly improves prediction quality.",
)
parser.add_argument(
"--lora_checkpoint_peft",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
parser.add_argument(
"--filename_template",
type=str,
default="{file_name}/{instr}",
help="Output filename template, without extension, using '/' for subdirectories. Default: '{file_name}/{instr}'",
)
parser.add_argument(
"--lora_checkpoint_loralib",
type=str,
default="",
help="Initial checkpoint to LoRA weights",
)
if dict_args is not None:
args = parser.parse_args([])
args_dict = vars(args)
args_dict.update(dict_args)
args = argparse.Namespace(**args_dict)
else:
args = parser.parse_args()
args.pcm_type = validate_sndfile_subtype(args)
return args
def validate_sndfile_subtype(args):
codec = "flac" if getattr(args, "flac_file", False) else "wav"
subtype = args.pcm_type
if subtype in sf.available_subtypes(codec):
return subtype
default = sf.default_subtype(codec)
print(
f"WARNING: codec {codec} doesn't support subtype {subtype}, defaulting to {default}"
)
return default
def load_config(model_type: str, config_path: str) -> Union[ConfigDict, OmegaConf]:
"""
Load a model configuration from a file.
Based on `model_type`, returns either an OmegaConf (e.g., for 'htdemucs')
or a YAML-parsed ConfigDict for other models.
Args:
model_type (str): Model identifier that determines the loader behavior
(e.g., 'htdemucs', 'mdx23c', etc.).
config_path (str): Path to the configuration file (YAML/OmegaConf).
Returns:
Union[ConfigDict, OmegaConf]: Loaded configuration object.
Raises:
FileNotFoundError: If `config_path` does not point to an existing file.
ValueError: If the configuration cannot be parsed or is otherwise invalid.
"""
try:
with open(config_path, "r") as f:
if model_type == "htdemucs":
config = OmegaConf.load(config_path)
else:
config = ConfigDict(yaml.load(f, Loader=yaml.FullLoader))
return config
except FileNotFoundError:
raise FileNotFoundError(f"Configuration file not found at {config_path}")
except Exception as e:
raise ValueError(f"Error loading configuration: {e}")
def get_model_from_config(
model_type: str, config_path: str
) -> Tuple[nn.Module, Union[ConfigDict, OmegaConf]]:
"""
Load and instantiate a model using a configuration file.
Given a `model_type` and a path to a configuration, this function loads the
configuration (YAML or OmegaConf) and constructs the corresponding model.
Args:
model_type (str): Identifier of the model family (e.g., 'mdx23c', 'htdemucs',
'scnet', 'mel_band_conformer', etc.).
config_path (str): Filesystem path to the configuration file used to
initialize the model.
Returns:
Tuple[nn.Module, Union[ConfigDict, OmegaConf]]: A tuple containing the
initialized PyTorch model and the loaded configuration object.
Raises:
ValueError: If `model_type` is unknown or model initialization fails.
FileNotFoundError: If `config_path` does not exist (may be raised by the
underlying config loader).
"""
config = load_config(model_type, config_path)
if "model_type" in config.training:
model_type = config.training.model_type
if model_type == "mdx23c":
from models.mdx23c_tfc_tdf_v3 import TFC_TDF_net
model = TFC_TDF_net(config)
elif model_type == "htdemucs":
from models.demucs4ht import get_model
model = get_model(config)
elif model_type == "segm_models":
from models.segm_models import Segm_Models_Net
model = Segm_Models_Net(config)
elif model_type == "torchseg":
from models.torchseg_models import Torchseg_Net
model = Torchseg_Net(config)
elif model_type == "mel_band_roformer":
from models.bs_roformer import MelBandRoformer
model = MelBandRoformer(**dict(config.model))
elif model_type == "mel_band_conformer":
from models.bs_roformer import MelBandConformer
model = MelBandConformer(**dict(config.model))
elif model_type == "mel_band_roformer_experimental":
from models.bs_roformer.mel_band_roformer_experimental import MelBandRoformer
model = MelBandRoformer(**dict(config.model))
elif model_type == "bs_roformer":
from models.bs_roformer import BSRoformer
model = BSRoformer(**dict(config.model))
elif model_type == "bs_conformer":
from models.bs_roformer import BSConformer
model = BSConformer(**dict(config.model))
elif model_type == "bs_roformer_experimental":
from models.bs_roformer.bs_roformer_experimental import BSRoformer
model = BSRoformer(**dict(config.model))
elif model_type == "bs_mamba2":
from models.bs_mamba2_code.bs_mamba2 import BSMamba2Model
model = BSMamba2Model(**dict(config.model))
elif model_type == "swin_upernet":
from models.upernet_swin_transformers import Swin_UperNet_Model
model = Swin_UperNet_Model(config)
elif model_type == "bandit":
from models.bandit.core.model import MultiMaskMultiSourceBandSplitRNNSimple
model = MultiMaskMultiSourceBandSplitRNNSimple(**config.model)
elif model_type == "bandit_v2":
from models.bandit_v2.bandit import Bandit
model = Bandit(**config.kwargs)
elif model_type == "scnet_unofficial":
from models.scnet_unofficial import SCNet
model = SCNet(**config.model)
elif model_type == "scnet":
from models.scnet import SCNet
model = SCNet(**config.model)
elif model_type == "scnet_tran":
from models.scnet.scnet_tran import SCNet_Tran
model = SCNet_Tran(**config.model)
elif model_type == "apollo":
from models.look2hear.models import BaseModel
model = BaseModel.apollo(**config.model)
elif model_type == "experimental_mdx23c_stht":
from models.mdx23c_tfc_tdf_v3_with_STHT import TFC_TDF_net
model = TFC_TDF_net(config)
elif model_type == "scnet_masked":
from models.scnet.scnet_masked import SCNet
model = SCNet(**config.model)
elif model_type == "conformer":
from models.conformer_model import ConformerMSS, NeuralModel
model = ConformerMSS(
core=NeuralModel(**config.model),
n_fft=config.stft.n_fft,
hop_length=config.stft.hop_length,
win_length=getattr(config.stft, "win_length", config.stft.n_fft),
center=config.stft.center,
)
elif model_type == "mel_band_conformer":
from models.mel_band_conformer import MelBandConformer
model = MelBandConformer(**config.model)
else:
raise ValueError(f"Unknown model type: {model_type}")
return model, config
def get_scheduler(config, optimizer):
scheduler_name = config.training.get("scheduler", "ReduceLROnPlateau")
if scheduler_name == "linear_scheduler":
from transformers import get_linear_schedule_with_warmup
num_training_steps = config.training.num_epochs * config.training.num_steps
num_warmup_steps = config.training.num_warmup_steps
scheduler = get_linear_schedule_with_warmup(
optimizer,
num_warmup_steps=num_warmup_steps,
num_training_steps=num_training_steps,
)
elif scheduler_name == "ReduceLROnPlateau":
from torch.optim.lr_scheduler import ReduceLROnPlateau
scheduler = ReduceLROnPlateau(
optimizer,
"max",
patience=config.training.patience,
factor=config.training.reduce_factor,
)
else:
available_schedulers = ["linear_scheduler", "ReduceLROnPlateau"]
raise ValueError(
f"Unknown scheduler '{scheduler_name}'. "
f"Available options: {available_schedulers}. "
f"Check your config.training.scheduler setting."
)
scheduler.name = scheduler_name
return scheduler
def logging(
logs: List[str], text: str, verbose_logging: bool = False
) -> Union[List[str], None]:
"""
Print a log message and optionally append it to an in-memory list.
In Distributed Data Parallel (DDP) contexts, the message is printed only on
rank 0; when DDP is uninitialized, it prints unconditionally. If
`verbose_logging` is True, the message is also appended to `logs`.
Args:
logs (List[str]): Mutable list to which the message is appended when
`verbose_logging` is True.
text (str): The log message to print (rank 0 only under DDP) and
optionally store.
verbose_logging (bool, optional): If True, append `text` to `logs`.
Defaults to False.
Returns:
List[str]: The function prints and may mutate `logs` in place.
"""
if not dist.is_initialized() or dist.get_rank() == 0:
print(text)
if verbose_logging:
logs.append(text)
return logs
def write_results_in_file(store_dir: str, logs: List[str]) -> None:
"""
Write accumulated log messages to a results file.
Creates (or overwrites) a `results.txt` file inside `store_dir` and writes
each entry from `logs` as a separate line. In Distributed Data Parallel (DDP)
scenarios, writing is intended to occur only on rank 0.
Args:
store_dir (str): Directory path where `results.txt` will be saved.
logs (List[str]): Ordered collection of log lines to write.
Returns:
None
"""
if not dist.is_initialized() or dist.get_rank() == 0:
with open(f"{store_dir}/results.txt", "w") as out:
for item in logs:
out.write(item + "\n")
def manual_seed(seed: int) -> None:
"""
Initialize random seeds for reproducibility.
Sets the seed across Python's `random`, NumPy, and PyTorch (CPU and CUDA)
libraries, and updates the `PYTHONHASHSEED` environment variable. This helps
ensure deterministic behavior where possible, though some GPU operations
may still introduce nondeterminism.
Args:
seed (int): The seed value to use for all random number generators.
Returns:
None
"""
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed) # if multi-GPU
torch.backends.cudnn.deterministic = False
os.environ["PYTHONHASHSEED"] = str(seed)
def initialize_environment(seed: int, results_path: str) -> None:
"""
Initialize runtime environment settings.
Sets random seeds for reproducibility, adjusts PyTorch cuDNN behavior,
configures multiprocessing with the 'spawn' start method, and ensures
the results directory exists.
Args:
seed (int): Random seed value for deterministic initialization.
results_path (str): Filesystem path to create for saving results.
Returns:
None
"""
manual_seed(seed)
torch.backends.cudnn.deterministic = False
try:
torch.multiprocessing.set_start_method("spawn")
except Exception:
pass
os.makedirs(results_path, exist_ok=True)
def initialize_environment_ddp(
rank: int, world_size: int, seed: int = 0, resuls_path: str = None
) -> None:
"""
Initialize environment for Distributed Data Parallel (DDP) training/validation.
Sets up the DDP process group, seeds random number generators, configures
multiprocessing to use the 'spawn' method, and creates a results directory
if provided.
Args:
rank (int): Rank of the current process within the DDP group.
world_size (int): Total number of processes participating in DDP.
seed (int, optional): Random seed for reproducibility. Defaults to 0.
resuls_path (str, optional): Directory path to create for storing results.
If None, no directory is created. Defaults to None.
Returns:
None
"""
seed = (seed + int(time.time())) % 55535 + 10000
setup_ddp(rank, world_size, seed)
manual_seed(seed)
try:
torch.multiprocessing.set_start_method(
"spawn", force=True
) # force=True prevent errors
except RuntimeError as e:
if "context has already been set" not in str(e):
raise e
if resuls_path is not None:
os.makedirs(resuls_path, exist_ok=True)
def gen_wandb_name(args, config) -> str:
"""
Generate a descriptive name for a Weights & Biases (wandb) run.
Combines the model type, a dash-joined list of training instruments,
and the current date into a single string identifier.
Args:
args: Parsed arguments namespace containing at least `model_type`.
config: Configuration object/dict with a `training.instruments` field.
Returns:
str: Formatted run name in the form
"<model_type>_[<instrument1>-<instrument2>-...]_<YYYY-MM-DD>".
"""
instrum = "-".join(config["training"]["instruments"])
time_str = time.strftime("%Y-%m-%d")
name = "{}_[{}]_{}".format(args.model_type, instrum, time_str)
return name
def wandb_init(
args: argparse.Namespace, config: Union[ConfigDict, OmegaConf], batch_size: int
) -> None:
"""
Initialize Weights & Biases (wandb) for experiment tracking.
Depending on the provided arguments, sets up wandb in one of three modes:
- Offline mode when `args.wandb_offline` is True.
- Disabled mode when no valid `wandb_key` is provided.
- Online mode with authentication using `args.wandb_key`.
Args:
args (argparse.Namespace): Parsed arguments containing wandb options
(`wandb_offline`, `wandb_key`, `device_ids`).
config (Dict): Experiment configuration dictionary to log.
batch_size (int): Training batch size to include in the run configuration.
Returns:
None
"""
if args.wandb_offline:
wandb.init(
mode="offline",
project="msst",
name=gen_wandb_name(args, config),
config={
"config": config,
"args": args,
"device_ids": args.device_ids,
"batch_size": batch_size,
},
)
elif args.wandb_key is None or args.wandb_key.strip() == "":
wandb.init(mode="disabled")
else:
wandb.login(key=args.wandb_key)
wandb.init(
project="msst",
name=gen_wandb_name(args, config),
config={
"config": config,
"args": args,
"device_ids": args.device_ids,
"batch_size": batch_size,
},
)
def find_free_port():
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(("", 0)) # 0 → OS chooses free port
return s.getsockname()[1]
def setup_ddp(rank: int, world_size: int, seed: int) -> None:
"""
Initialize a Distributed Data Parallel (DDP) process group.
Configures environment variables for the DDP master node, attempts to
initialize the process group with the NCCL backend (preferred for GPUs),
and falls back to the Gloo backend if NCCL is unavailable. Also sets the
current CUDA device to match the process rank.
Args:
rank (int): Rank of the current process in the DDP group.
world_size (int): Total number of processes participating in DDP.
seed:
Returns:
None
"""
os.environ["MASTER_ADDR"] = "localhost"
os.environ["MASTER_PORT"] = str(seed)
os.environ["USE_LIBUV"] = "0"
try:
dist.init_process_group("nccl", rank=rank, world_size=world_size)
except:
dist.init_process_group("gloo", rank=rank, world_size=world_size)
if dist.get_rank() == 0:
print('NCCL are not available. Using "gloo" backend.')
torch.cuda.set_device(rank)
def cleanup_ddp() -> None:
"""
Finalize and clean up a Distributed Data Parallel (DDP) process group.
Calls `torch.distributed.destroy_process_group()` to release resources
associated with the current DDP environment.
Returns:
None
"""
dist.destroy_process_group()
|