Spaces:
Running on Zero
Running on Zero
File size: 9,161 Bytes
979b6aa | 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 | import argparse
import csv
import importlib
import os
import pprint
import random
import shutil
import signal
import sys
import time
import warnings
from datetime import datetime
# Set wandb to offline mode before any wandb imports
os.environ["WANDB_MODE"] = "offline"
os.environ["WANDB_DISABLE_CODE"] = "true"
os.environ["WANDB_SILENT"] = "true"
os.environ["WANDB_DISABLED"] = "true"
os.environ["WANDB_OFFLINE"] = "true"
os.environ["WANDB_ANONYMOUS"] = "allow"
import matplotlib.pyplot as plt
import numpy as np
import torch
import torch.distributed as dist
import torch.multiprocessing as mp
import torch.nn as nn
import torch.nn.functional as F
import wandb
from dataloaders.build_vocab import Vocab
from loguru import logger
from omegaconf import OmegaConf
from torch.nn.parallel import DistributedDataParallel as DDP
from torch.nn.utils.rnn import pad_sequence
from torch.utils.data import DataLoader
from torch.utils.data._utils.collate import default_collate
from torch.utils.tensorboard import SummaryWriter
from utils import logger_tools, metric, other_tools
def prepare_all():
"""
Parse command line arguments and prepare configuration
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"--config", type=str, default="./configs/intention_w_distill.yaml"
)
parser.add_argument(
"--resume", type=str, default=None, help="Path to checkpoint to resume from"
)
parser.add_argument("--debug", action="store_true", help="Enable debugging mode")
parser.add_argument(
"--mode",
type=str,
choices=["train", "test"],
default="train",
help="Choose between 'train' or 'test' mode",
)
parser.add_argument(
"--checkpoint",
"--ckpt",
type=str,
default=None,
help="Checkpoint path for testing or resuming training",
)
parser.add_argument("overrides", nargs=argparse.REMAINDER)
args = parser.parse_args()
# Load config
if args.config.endswith(".yaml"):
cfg = OmegaConf.load(args.config)
cfg.exp_name = args.config.split("/")[-1][:-5]
else:
raise ValueError(
"Unsupported config file format. Only .yaml files are allowed."
)
# Handle resume from checkpoint
if args.resume:
cfg.resume_from_checkpoint = args.resume
# Debug mode settings
if args.debug:
cfg.wandb_project = "debug"
cfg.exp_name = "debug"
cfg.solver.max_train_steps = 4
# Process override arguments
if args.overrides:
for arg in args.overrides:
if "=" in arg:
key, value = arg.split("=")
try:
value = eval(value)
except:
pass
if key in cfg:
cfg[key] = value
else:
try:
# Handle nested config with dot notation
keys = key.split(".")
cfg_node = cfg
for k in keys[:-1]:
cfg_node = cfg_node[k]
cfg_node[keys[-1]] = value
except:
raise ValueError(f"Key {key} not found in config.")
# Set up wandb
if hasattr(cfg, "wandb_key"):
os.environ["WANDB_API_KEY"] = cfg.wandb_key
# Create output directories
save_dir = os.path.join(cfg.output_dir, cfg.exp_name)
os.makedirs(save_dir, exist_ok=True)
os.makedirs(os.path.join(save_dir, "sanity_check"), exist_ok=True)
# Save config
config_path = os.path.join(save_dir, "sanity_check", f"{cfg.exp_name}.yaml")
with open(config_path, "w") as f:
OmegaConf.save(cfg, f)
# Copy source files for reproducibility
current_dir = os.path.dirname(os.path.abspath(__file__))
sanity_check_dir = os.path.join(save_dir, "sanity_check")
output_dir = os.path.abspath(cfg.output_dir)
def is_in_output_dir(path):
return os.path.abspath(path).startswith(output_dir)
def should_copy_file(file_path):
if is_in_output_dir(file_path):
return False
if "__pycache__" in file_path:
return False
if file_path.endswith(".pyc"):
return False
return True
# Copy Python files
for root, dirs, files in os.walk(current_dir):
if is_in_output_dir(root):
continue
for file in files:
if file.endswith(".py"):
full_file_path = os.path.join(root, file)
if should_copy_file(full_file_path):
relative_path = os.path.relpath(full_file_path, current_dir)
dest_path = os.path.join(sanity_check_dir, relative_path)
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
try:
shutil.copy(full_file_path, dest_path)
except Exception as e:
print(f"Warning: Could not copy {full_file_path}: {str(e)}")
return cfg, args
def seed_everything(seed):
"""
Set random seeds for reproducibility
"""
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
@logger.catch
def main_worker(rank, world_size, cfg, args):
if not sys.warnoptions:
warnings.simplefilter("ignore")
dist.init_process_group(backend="nccl", rank=rank, world_size=world_size)
logger_tools.set_args_and_logger(cfg, rank)
seed_everything(cfg.seed)
other_tools.print_exp_info(cfg)
# Initialize trainer
trainer = __import__(
f"trainer.generative_trainer", fromlist=["something"]
).CustomTrainer(cfg, args)
# Resume logic
resume_epoch = 0
if args.resume:
# Find the checkpoint path
if os.path.isdir(args.resume):
ckpt_path = os.path.join(args.resume, "ckpt.pth")
else:
ckpt_path = args.resume
if not os.path.exists(ckpt_path):
raise FileNotFoundError(f"Checkpoint not found at {ckpt_path}")
checkpoint = torch.load(ckpt_path, map_location="cpu")
trainer.load_checkpoint(checkpoint)
resume_epoch = checkpoint.get("epoch", 0) + 1 # Start from next epoch
logger.info(
f"Resumed from checkpoint {ckpt_path}, starting at epoch {resume_epoch}"
)
if args.mode == "train" and not args.resume:
logger.info("Training from scratch ...")
elif args.mode == "train" and args.resume:
logger.info(f"Resuming training from checkpoint {args.resume} ...")
elif args.mode == "test":
logger.info("Testing ...")
if args.mode == "train":
start_time = time.time()
for epoch in range(resume_epoch, cfg.solver.epochs + 1):
if cfg.ddp:
trainer.val_loader.sampler.set_epoch(epoch)
if (epoch) % cfg.val_period == 0:
if rank == 0:
if cfg.data.test_clip:
trainer.test_clip(epoch)
else:
trainer.val(epoch)
epoch_time = time.time() - start_time
if trainer.rank == 0:
logger.info(
f"Time info >>>> elapsed: {epoch_time/60:.2f} mins\t"
+ f"remain: {(cfg.solver.epochs/(epoch+1e-7)-1)*epoch_time/60:.2f} mins"
)
if epoch != cfg.solver.epochs:
if cfg.ddp:
trainer.train_loader.sampler.set_epoch(epoch)
trainer.tracker.reset()
trainer.train(epoch)
if cfg.debug:
trainer.test(epoch)
# Final cleanup and logging
if rank == 0:
for k, v in trainer.val_best.items():
logger.info(f"Best {k}: {v['value']:.6f} at epoch {v['epoch']}")
wandb.finish()
elif args.mode == "test" and not cfg.data.test_clip:
trainer.test(999)
elif args.mode == "test" and cfg.data.test_clip:
trainer.test_clip(999)
if __name__ == "__main__":
# Set up distributed training environment
master_addr = "127.0.0.1"
master_port = 29500
import socket
# Function to check if a port is in use
def is_port_in_use(port, host="127.0.0.1"):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
try:
s.bind((host, port))
return False # Port is available
except socket.error:
return True # Port is in use
# Find available port
while is_port_in_use(master_port):
print(f"Port {master_port} is in use, trying next port...")
master_port += 1
os.environ["MASTER_ADDR"] = master_addr
os.environ["MASTER_PORT"] = str(master_port)
cfg, args = prepare_all()
if cfg.ddp:
mp.set_start_method("spawn", force=True)
mp.spawn(
main_worker,
args=(len(cfg.gpus), cfg, args),
nprocs=len(cfg.gpus),
)
else:
main_worker(0, 1, cfg, args)
|