-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
669 lines (587 loc) · 27.5 KB
/
main.py
File metadata and controls
669 lines (587 loc) · 27.5 KB
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
import os
import sys
# 确保当前目录的模块优先加载
current_dir = os.path.dirname(os.path.abspath(__file__))
model_dir = os.path.join(current_dir, 'model')
# 将当前目录下的model目录添加到sys.path的最前面,确保优先级
if model_dir not in sys.path:
sys.path.insert(0, model_dir)
if current_dir not in sys.path:
sys.path.insert(0, current_dir)
# 只在必要时添加父目录
parent_dir = os.path.dirname(current_dir)
if parent_dir not in sys.path:
sys.path.append(parent_dir)
import copy
import glob
import json
import logging
import re
import subprocess
import random
from datetime import datetime
from functools import partial
import numpy as np
import torch
from torch import optim
import wandb
try:
import torch.utils.tensorboard as tensorboard
except ImportError:
tensorboard = None
try:
import horovod.torch as hvd
except ImportError:
hvd = None
from data_chest_ct import get_data as get_data_chest_ct
from params import parse_args
from train import train_one_epoch, evaluate
from open_clip import create_model_and_transforms, trace_model, get_tokenizer
from open_clip.factory import create_loss
from open_clip.factory import _MODEL_CONFIGS
from open_clip_train.distributed import is_master, init_distributed_device, broadcast_object
from open_clip_train.logger import setup_logging
from open_clip_train.scheduler import cosine_lr, const_lr, const_lr_cooldown
from open_clip_train.file_utils import pt_load, check_exists, start_sync_process, remote_sync
# 确保导入当前目录下的visual_encoder模块
try:
from model.visual_encoder import vit_base_singlescan_h2_token2744 # 强制导入当前目录的visual_encoder
logging.info("成功导入GHS-Net的visual_encoder模块")
except ImportError as e:
logging.warning(f"无法导入GHS-Net的visual_encoder模块: {e}")
# 尝试相对导入
try:
from .model.visual_encoder import vit_base_singlescan_h2_token2744
logging.info("通过相对导入成功导入GHS-Net的visual_encoder模块")
except ImportError as e2:
logging.error(f"相对导入也失败: {e2}")
raise ImportError(f"无法导入visual_encoder模块: {e}, {e2}")
LATEST_CHECKPOINT_NAME = "epoch_latest.pt"
def random_seed(seed=42, rank=0):
torch.manual_seed(seed + rank)
np.random.seed(seed + rank)
random.seed(seed + rank)
def natural_key(string_):
"""See http://www.codinghorror.com/blog/archives/001018.html"""
return [int(s) if s.isdigit() else s for s in re.split(r'(\d+)', string_.lower())]
def get_latest_checkpoint(path: str, remote: bool):
# as writen, this glob recurses, so can pick up checkpoints across multiple sub-folders
if remote:
result = subprocess.run(["aws", "s3", "ls", path + "/"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print(result)
if result.returncode == 1:
return None
checkpoints = [os.path.join(path, x.split(' ')[-1]) for x in result.stdout.decode().split('\n')[:-1]]
else:
checkpoints = glob.glob(path + '**/*.pt', recursive=True)
if checkpoints:
checkpoints = sorted(checkpoints, key=natural_key)
return checkpoints[-1]
return None
def main(args):
args = parse_args(args)
# 根据参数设置WANDB模式
if args.wandboffline:
os.environ["WANDB_MODE"] = "offline"
if torch.cuda.is_available():
# This enables tf32 on Ampere GPUs which is only 8% slower than
# float16 and almost as accurate as float32
# This was a default in pytorch until 1.12
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.benchmark = True
torch.backends.cudnn.deterministic = False
# 检测是否在分布式环境中运行
if 'RANK' in os.environ or 'LOCAL_RANK' in os.environ or args.horovod:
# 在分布式环境中运行
device = init_distributed_device(args)
else:
# 单卡训练模式,设置默认值
args.distributed = False
args.world_size = 1
args.rank = 0
args.local_rank = 0
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
args.device = device
# 确保单卡模式下的其他必要属性
if not hasattr(args, 'log_local'):
args.log_local = False
if not hasattr(args, 'device_id'):
args.device_id = 0
logging.info(f"Running in single GPU mode on device: {device}")
# get the name of the experiments
if args.name is None:
# sanitize model name for filesystem / uri use, easier if we don't use / in name as a rule?
model_name_safe = args.model.replace('/', '-')
date_str = datetime.now().strftime("%Y_%m_%d-%H_%M_%S")
if args.distributed:
# sync date_str from master to all ranks
date_str = broadcast_object(args, date_str)
args.name = '-'.join([
date_str,
f"model_{model_name_safe}",
f"lr_{args.lr}",
f"b_{args.batch_size * args.accum_batch}",
f"j_{args.workers}",
f"p_{args.precision}",
])
resume_latest = args.resume == 'latest'
log_base_path = os.path.join(args.logs, args.name)
args.log_path = None
if is_master(args, local=args.log_local):
os.makedirs(log_base_path, exist_ok=True)
log_filename = f'out-{args.rank}' if args.log_local else 'out.log'
args.log_path = os.path.join(log_base_path, log_filename)
if os.path.exists(args.log_path) and not resume_latest:
print(
"Error. Experiment already exists. Use --name {} to specify a new experiment."
)
return -1
# Setup text logger
args.log_level = logging.DEBUG if args.debug else logging.INFO
setup_logging(args.log_path, args.log_level)
# Setup wandb, tensorboard, checkpoint logging
args.wandb = 'wandb' in args.report_to or 'all' in args.report_to
args.tensorboard = 'tensorboard' in args.report_to or 'all' in args.report_to
args.checkpoint_path = os.path.join(log_base_path, "checkpoints")
if is_master(args):
args.tensorboard_path = os.path.join(log_base_path, "tensorboard") if args.tensorboard else ''
for dirname in [args.tensorboard_path, args.checkpoint_path]:
if dirname:
os.makedirs(dirname, exist_ok=True)
else:
args.tensorboard_path = ''
if resume_latest:
resume_from = None
checkpoint_path = args.checkpoint_path
# If using remote_sync, need to check the remote instead of the local checkpoints folder.
if args.remote_sync is not None:
checkpoint_path = os.path.join(args.remote_sync, args.name, "checkpoints")
if args.save_most_recent:
print('Error. Cannot use save-most-recent with remote_sync and resume latest.')
return -1
if args.remote_sync_protocol != 's3':
print('Error. Sync protocol not supported when using resume latest.')
return -1
if is_master(args):
# Checking for existing checkpoint via master rank only. It is possible for
# different rank processes to see different files if a shared file-system is under
# stress, however it's very difficult to fully work around such situations.
if args.save_most_recent:
# if --save-most-recent flag is set, look for latest at a fixed filename
resume_from = os.path.join(checkpoint_path, LATEST_CHECKPOINT_NAME)
if not os.path.exists(resume_from):
# If no latest checkpoint has been saved yet, don't try to resume
resume_from = None
else:
# otherwise, list checkpoint dir contents and pick the newest checkpoint
resume_from = get_latest_checkpoint(checkpoint_path, remote=args.remote_sync is not None)
if resume_from:
logging.info(f'Found latest resume checkpoint at {resume_from}.')
else:
logging.info(f'No latest resume checkpoint found in {checkpoint_path}.')
if args.distributed:
# sync found checkpoint path to all ranks
resume_from = broadcast_object(args, resume_from)
args.resume = resume_from
if args.copy_codebase:
copy_codebase(args)
# start the sync proces if remote-sync is not None
remote_sync_process = None
if is_master(args) and args.remote_sync is not None:
# first make sure it works
result = remote_sync(
os.path.join(args.logs, args.name),
os.path.join(args.remote_sync, args.name),
args.remote_sync_protocol
)
if result:
logging.info('remote sync successful.')
else:
logging.info('Error: remote sync failed. Exiting.')
return -1
# if all looks good, start a process to do this every args.remote_sync_frequency seconds
remote_sync_process = start_sync_process(
args.remote_sync_frequency,
os.path.join(args.logs, args.name),
os.path.join(args.remote_sync, args.name),
args.remote_sync_protocol
)
remote_sync_process.start()
if args.precision == 'fp16':
logging.warning(
'It is recommended to use AMP mixed-precision instead of FP16. '
'FP16 support needs further verification and tuning, especially for train.')
if args.horovod:
logging.info(
f'Running in horovod mode with multiple processes / nodes. Device: {args.device}.'
f'Process (global: {args.rank}, local {args.local_rank}), total {args.world_size}.')
elif args.distributed:
logging.info(
f'Running in distributed mode with multiple processes. Device: {args.device}.'
f'Process (global: {args.rank}, local {args.local_rank}), total {args.world_size}.')
else:
logging.info(f'Running with a single process. Device {args.device}.')
dist_model = None
args.distill = args.distill_model is not None and args.distill_pretrained is not None
if args.distill:
# FIXME: support distillation with grad accum.
assert args.accum_freq == 1
# FIXME: support distillation with coca.
assert 'coca' not in args.model.lower()
if isinstance(args.force_image_size, (tuple, list)) and len(args.force_image_size) == 1:
# arg is nargs, single (square) image size list -> int
args.force_image_size = args.force_image_size[0]
random_seed(args.seed, 0)
model_kwargs = {}
if args.siglip:
model_kwargs['init_logit_scale'] = np.log(10) # different from CLIP
model_kwargs['init_logit_bias'] = -10
# 添加注意力融合方法参数
model_kwargs['attention_fusion_method'] = args.fusion_method
# rescan model config
# 使用当前目录下的模型配置文件
model_configs_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'model', 'model_configs')
if os.path.exists(model_configs_dir):
for _c in os.listdir(model_configs_dir):
_m, _e = os.path.splitext(_c)
if _e.lower() == '.json':
with open(os.path.join(model_configs_dir, _c), 'r') as f:
model_cfg = json.load(f)
_MODEL_CONFIGS[_m] = model_cfg
else:
logging.warning(f"Model configs directory not found: {model_configs_dir}")
model, preprocess_train, preprocess_val = create_model_and_transforms(
args.model,
args.pretrained,
precision=args.precision,
device=device,
jit=args.torchscript,
force_quick_gelu=args.force_quick_gelu,
force_custom_text=args.force_custom_text,
force_patch_dropout=args.force_patch_dropout,
force_image_size=args.force_image_size,
image_mean=args.image_mean,
image_std=args.image_std,
image_interpolation=args.image_interpolation,
image_resize_mode=args.image_resize_mode, # only effective for inference
aug_cfg=args.aug_cfg,
pretrained_image=args.pretrained_image,
output_dict=True,
cache_dir=args.cache_dir,
**model_kwargs,
)
if args.use_cxr_bert:
from transformers import AutoModel
cxr_bert = AutoModel.from_pretrained(args.cxr_bert_path, trust_remote_code=True).bert
if args.lora_text:
from peft import LoraConfig, get_peft_model
lora_config = LoraConfig(
r=8,
lora_alpha=8,
target_modules=["query", "value"],
lora_dropout=0.0,
bias="none",
)
cxr_bert = get_peft_model(cxr_bert, lora_config)
for n, p in cxr_bert.named_parameters():
p.requires_grad = (not args.lock_text_freeze_layer_norm) if "LayerNorm" in n.split(".") else False
cxr_bert.to(device=device)
model.text.transformer = cxr_bert
# Note: LoRA will be applied after weight loading to avoid key mismatch issues
if args.distill:
# FIXME: currently assumes the model you're distilling from has the same tokenizer & transforms.
dist_model, _, _ = create_model_and_transforms(
args.distill_model,
args.distill_pretrained,
device=device,
precision=args.precision,
output_dict=True,
cache_dir=args.cache_dir,
)
if args.use_bnb_linear is not None:
print('=> using a layer from bitsandbytes.\n'
' this is an experimental feature which requires two extra pip installs\n'
' pip install bitsandbytes triton'
' please make sure to use triton 2.0.0')
import bitsandbytes as bnb
from open_clip.utils import replace_linear
print(f'=> replacing linear layers with {args.use_bnb_linear}')
linear_replacement_cls = getattr(bnb.nn.triton_based_modules, args.use_bnb_linear)
replace_linear(model, linear_replacement_cls)
model = model.to(device)
random_seed(args.seed, args.rank)
if args.trace:
model = trace_model(model, batch_size=args.batch_size * args.accum_batch, device=device)
if args.lock_image:
# lock image tower as per LiT - https://arxiv.org/abs/2111.07991
model.lock_image_tower(
unlocked_groups=args.lock_image_unlocked_groups,
freeze_bn_stats=args.lock_image_freeze_bn_stats)
if args.lock_text:
model.lock_text_tower(
unlocked_layers=args.lock_text_unlocked_layers,
freeze_layer_norm=args.lock_text_freeze_layer_norm)
if args.grad_checkpointing:
model.set_grad_checkpointing()
if args.distributed and not args.horovod:
if args.use_bn_sync:
model = torch.nn.SyncBatchNorm.convert_sync_batchnorm(model)
ddp_args = {}
if args.ddp_static_graph:
# this doesn't exist in older PyTorch, arg only added if enabled
ddp_args['static_graph'] = True
if args.lora_text or args.lora_visual:
ddp_args['find_unused_parameters'] = True
model = torch.nn.parallel.DistributedDataParallel(model, device_ids=[device], **ddp_args)
if args.distill:
dist_model = torch.nn.parallel.DistributedDataParallel(dist_model, device_ids=[device], **ddp_args)
# create optimizer and scaler
optimizer = None
scaler = None
if args.train_data or args.dataset_type == "synthetic":
assert not args.trace, 'Cannot train with traced model'
opt = getattr(args, 'opt', 'adamw').lower()
if opt.startswith('timm/'):
from timm.optim import create_optimizer_v2
timm_opt = opt.split('timm/')[-1]
opt_kwargs = {}
assert (args.beta1 is None) == (args.beta2 is None), \
'When using timm optimizer, BOTH beta1 and beta2 must be specified (or not specified).'
if args.beta1 is not None:
opt_kwargs['betas'] = (args.beta1, args.beta2)
if args.momentum is not None:
opt_kwargs['momentum'] = args.momentum
optimizer = create_optimizer_v2(
model,
timm_opt,
lr=args.lr,
weight_decay=args.wd,
eps=args.eps,
**opt_kwargs,
)
else:
# If some params are not passed, we use the default values based on model name.
exclude = lambda n, p: p.ndim < 2 or "bn" in n or "ln" in n or "bias" in n or 'logit_scale' in n
include = lambda n, p: not exclude(n, p)
named_parameters = list(model.named_parameters())
gain_or_bias_params = [p for n, p in named_parameters if exclude(n, p) and p.requires_grad]
rest_params = [p for n, p in named_parameters if include(n, p) and p.requires_grad]
if opt == 'adamw':
optimizer = optim.AdamW(
[
{"params": gain_or_bias_params, "weight_decay": 0.},
{"params": rest_params, "weight_decay": args.wd},
],
lr=args.lr,
betas=(args.beta1, args.beta2),
eps=args.eps,
)
else:
assert False, f'Unknown optimizer {opt}'
if is_master(args):
if is_master(args):
defaults = copy.deepcopy(optimizer.defaults)
defaults['weight_decay'] = args.wd
defaults = ', '.join([f'{k}: {v}' for k, v in defaults.items()])
logging.info(
f'Created {type(optimizer).__name__} ({args.opt}) optimizer: {defaults}'
)
if args.horovod:
optimizer = hvd.DistributedOptimizer(optimizer, named_parameters=model.named_parameters())
hvd.broadcast_parameters(model.state_dict(), root_rank=0)
hvd.broadcast_optimizer_state(optimizer, root_rank=0)
scaler = None
if args.precision == "amp":
try:
scaler = torch.amp.GradScaler(device=device)
except (AttributeError, TypeError) as e:
scaler = torch.cuda.amp.GradScaler()
# optionally resume/finetune from a checkpoint
start_epoch = 0
if args.resume is not None:
checkpoint = pt_load(args.resume, map_location='cpu')
# resuming a train checkpoint w/ epoch and optimizer state
start_epoch = checkpoint["epoch"]
sd = checkpoint["state_dict"]
if not args.distributed and next(iter(sd.items()))[0].startswith('module'):
sd = {k[len('module.'):]: v for k, v in sd.items()}
model.load_state_dict(sd,strict=False)
if optimizer is not None:
optimizer.load_state_dict(checkpoint["optimizer"])
if scaler is not None and 'scaler' in checkpoint:
scaler.load_state_dict(checkpoint['scaler'])
logging.info(f"=> resuming checkpoint '{args.resume}' (epoch {start_epoch})")
if args.finetune is not None:
# loading a bare (model only) checkpoint for fine-tune
checkpoint = pt_load(args.finetune, map_location='cpu')
model.load_state_dict(checkpoint["state_dict"])
logging.info(f"=> loaded checkpoint '{args.finetune}' (epoch {start_epoch})")
if args.load_checkpoint is not None:
# loading checkpoint weights before training
checkpoint = pt_load(args.load_checkpoint, map_location='cpu')
sd = checkpoint['state_dict']
# remove 'module.' prefix if present
if next(iter(sd.items()))[0].startswith('module.'):
sd = {k[len('module.'):]: v for k, v in sd.items()}
model.load_state_dict(sd)
logging.info(f"=> loaded checkpoint weights '{args.load_checkpoint}'")
if is_master(args):
logging.info("Model:")
logging.info(f"{str(model)}")
logging.info("Params:")
params_file = os.path.join(args.logs, args.name, "params.txt")
with open(params_file, "w") as f:
for name in sorted(vars(args)):
val = getattr(args, name)
logging.info(f" {name}: {val}")
f.write(f"{name}: {val}\n")
# for evaluation, use resume but do not set args.train_data
# initialize datasets
tokenizer = get_tokenizer(args.model, cache_dir=args.cache_dir, trust_remote_code=True)
data = get_data_chest_ct(
args,
tokenizer=tokenizer
)
# create scheduler if train
scheduler = None
if 'train' in data and optimizer is not None:
steps_per_epoch = data["train"].dataloader.num_batches // (args.accum_freq * args.accum_batch)
total_steps = steps_per_epoch * args.epochs
warmup_steps = int(args.warmup * steps_per_epoch)
logging.info(f'Warmup configuration: {args.warmup} epochs = {warmup_steps} steps')
logging.info(f'Steps per epoch: {steps_per_epoch}, Total training steps: {total_steps}')
if args.lr_scheduler == "cosine":
scheduler = cosine_lr(optimizer, args.lr, warmup_steps, total_steps)
elif args.lr_scheduler == "const":
scheduler = const_lr(optimizer, args.lr, warmup_steps, total_steps)
elif args.lr_scheduler == "const-cooldown":
assert args.epochs_cooldown is not None, \
"Please specify the number of cooldown epochs for this lr schedule."
cooldown_steps = steps_per_epoch * args.epochs_cooldown
scheduler = const_lr_cooldown(
optimizer, args.lr, warmup_steps, total_steps,
cooldown_steps, args.lr_cooldown_power, args.lr_cooldown_end)
else:
logging.error(
f'Unknown scheduler, {args.lr_scheduler}. Available options are: cosine, const, const-cooldown.')
exit(1)
# determine if this worker should save logs and checkpoints. only do so if it is rank == 0
args.save_logs = args.logs and args.logs.lower() != 'none' and is_master(args)
writer = None
if args.save_logs and args.tensorboard:
assert tensorboard is not None, "Please install tensorboard."
writer = tensorboard.SummaryWriter(args.tensorboard_path)
if args.wandb and is_master(args):
assert wandb is not None, 'Please install wandb.'
logging.debug('Starting wandb.')
args.train_sz = data["train"].dataloader.num_samples
if args.val_data is not None:
args.val_sz = data["val"].dataloader.num_samples
# you will have to configure this for your project!
wandb.init(
project=args.wandb_project_name,
name=args.name,
id=args.name,
notes=args.wandb_notes,
tags=[],
resume='auto' if args.resume == "latest" else None,
config=vars(args),
)
if args.debug:
wandb.watch(model, log='all')
wandb.save(params_file)
logging.debug('Finished loading wandb.')
# Pytorch 2.0 adds '_orig_mod.' prefix to keys of state_dict() of compiled models.
# For compatibility, we save state_dict() of the original model, which shares the
# weights without the prefix.
original_model = model
if args.torchcompile:
logging.info('Compiling model...')
if args.grad_checkpointing and args.distributed:
logging.info('Disabling DDP dynamo optimizer when grad checkpointing enabled.')
# As of now (~PyTorch 2.4/2.5), compile + grad checkpointing work, but DDP optimizer must be disabled
torch._dynamo.config.optimize_ddp = False
model = torch.compile(original_model)
if 'train' not in data:
# If using int8, convert to inference mode.
if args.use_bnb_linear is not None:
from open_clip.utils import convert_int8_model_to_inference_mode
convert_int8_model_to_inference_mode(model)
# Evaluate.
evaluate(model, data, start_epoch, args, tb_writer=writer, tokenizer=tokenizer)
return
loss = create_loss(args)
for name, param in model.named_parameters():
print(f" {name}: {param.dtype} (shape: {param.shape}, requires_grad: {param.requires_grad})")
total_params = sum(p.numel() for p in model.parameters())
trainable_params = sum(p.numel() for p in model.parameters() if p.requires_grad)
print(f"Total parameters: {total_params}")
print(f"Trainable parameters: {trainable_params}")
trainable_ratio = (trainable_params / total_params) * 100 if total_params > 0 else 0
print(f"Trainable parameters ratio: {trainable_ratio:.2f}%")
for epoch in range(start_epoch, args.epochs):
if is_master(args):
logging.info(f'Start epoch {epoch}')
train_one_epoch(model, data, loss, epoch, optimizer, scaler, scheduler, dist_model, args, tb_writer=writer)
completed_epoch = epoch + 1
if any(v in data for v in ('val', 'zeroshot-ct-rate')):
evaluate(model, data, completed_epoch, args, tb_writer=writer, tokenizer=tokenizer)
# Saving checkpoints.
if args.save_logs:
checkpoint_dict = {
"epoch": completed_epoch,
"name": args.name,
"state_dict": original_model.state_dict(),
"optimizer": optimizer.state_dict(),
}
if scaler is not None:
checkpoint_dict["scaler"] = scaler.state_dict()
if completed_epoch == args.epochs or (
args.save_frequency > 0 and (completed_epoch % args.save_frequency) == 0
):
torch.save(
checkpoint_dict,
os.path.join(args.checkpoint_path, f"epoch_{completed_epoch}.pt"),
)
if args.delete_previous_checkpoint:
previous_checkpoint = os.path.join(args.checkpoint_path, f"epoch_{completed_epoch - 1}.pt")
if os.path.exists(previous_checkpoint):
os.remove(previous_checkpoint)
if args.save_most_recent:
# try not to corrupt the latest checkpoint if save fails
tmp_save_path = os.path.join(args.checkpoint_path, "tmp.pt")
latest_save_path = os.path.join(args.checkpoint_path, LATEST_CHECKPOINT_NAME)
torch.save(checkpoint_dict, tmp_save_path)
os.replace(tmp_save_path, latest_save_path)
if args.wandb and is_master(args):
wandb.finish()
# run a final sync.
if remote_sync_process is not None:
logging.info('Final remote sync.')
remote_sync_process.terminate()
result = remote_sync(
os.path.join(args.logs, args.name),
os.path.join(args.remote_sync, args.name),
args.remote_sync_protocol
)
if result:
logging.info('Final remote sync successful.')
else:
logging.info('Final remote sync failed.')
def copy_codebase(args):
from shutil import copytree, ignore_patterns
new_code_path = os.path.join(args.logs, args.name, "code")
if os.path.exists(new_code_path):
print(
f"Error. Experiment already exists at {new_code_path}. Use --name to specify a new experiment."
)
return -1
print(f"Copying codebase to {new_code_path}")
current_code_path = os.path.realpath(__file__)
for _ in range(3):
current_code_path = os.path.dirname(current_code_path)
copytree(current_code_path, new_code_path, ignore=ignore_patterns('log', 'logs', 'wandb'))
print("Done copying code.")
return 1
if __name__ == "__main__":
main(sys.argv[1:])