-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.py
More file actions
670 lines (547 loc) · 23.3 KB
/
Copy pathTest.py
File metadata and controls
670 lines (547 loc) · 23.3 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
670
import argparse
import shutil
import time
import numpy as np
import os
from os.path import exists, split, join, splitext
import sys
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim
import torch.utils.data
import torchvision.transforms as transforms
import torchvision.datasets as datasets
from torchvision.utils import save_image
import zipfile # <- نستخدمه لفك الـ ZIP
import drn as models
model_names = sorted(name for name in models.__dict__
if name.islower() and not name.startswith("__")
and callable(models.__dict__[name]))
def parse_args():
parser = argparse.ArgumentParser(description='')
parser.add_argument('cmd', choices=['train', 'test', 'map', 'locate'])
parser.add_argument('data', metavar='DIR_OR_ZIP',
help='path to dataset folder OR a .zip file')
parser.add_argument('--arch', '-a', metavar='ARCH', default='drn18',
choices=model_names,
help='model architecture: ' +
' | '.join(model_names) +
' (default: drn18)')
parser.add_argument('-j', '--workers', default=4, type=int, metavar='N',
help='number of data loading workers (default: 4)')
parser.add_argument('--epochs', default=90, type=int, metavar='N',
help='number of total epochs to run')
parser.add_argument('--start-epoch', default=0, type=int, metavar='N',
help='manual epoch number (useful on restarts)')
parser.add_argument('-b', '--batch-size', default=256, type=int,
metavar='N', help='mini-batch size (default: 256)')
parser.add_argument('--lr', '--learning-rate', default=0.1, type=float,
metavar='LR', help='initial learning rate')
parser.add_argument('--momentum', default=0.9, type=float, metavar='M',
help='momentum')
parser.add_argument('--weight-decay', '--wd', default=1e-4, type=float,
metavar='W', help='weight decay (default: 1e-4)')
parser.add_argument('--print-freq', '-p', default=10, type=int,
metavar='N', help='print frequency (default: 10)')
parser.add_argument('--check-freq', default=10, type=int,
metavar='N', help='checkpoint frequency (default: 10)')
parser.add_argument('--resume', default='', type=str, metavar='PATH',
help='path to latest checkpoint (default: none)')
parser.add_argument('-e', '--evaluate', dest='evaluate', action='store_true',
help='evaluate model on validation set')
parser.add_argument('--pretrained', dest='pretrained', action='store_true',
help='use pre-trained model')
parser.add_argument('--lr-adjust', dest='lr_adjust',
choices=['linear', 'step'], default='step')
parser.add_argument('--crop-size', dest='crop_size', type=int, default=224)
parser.add_argument('--scale-size', dest='scale_size', type=int, default=256)
parser.add_argument('--step-ratio', dest='step_ratio', type=float, default=0.1)
args = parser.parse_args()
return args
def main():
print(' '.join(sys.argv))
args = parse_args()
print(args)
if args.cmd == 'train':
run_training(args)
elif args.cmd == 'test':
test_model(args)
def count_parameters(model):
"""Count trainable parameters."""
return sum(p.numel() for p in model.parameters() if p.requires_grad)
# ==========================
# ZIP / FOLDER helper
# ==========================
def prepare_data_root(data_path):
"""
If data_path is a directory: return it as-is.
If data_path is a .zip file (e.g. /content/drive/MyDrive/Wang_CVPR2020.zip):
- Extract it into /content
- Expect a folder /content/Wang_CVPR2020/ containing:
training/
validation/
testing/
- Return that folder as data_root.
This keeps all heavy I/O on Colab local disk, not on Drive.
"""
# Case 1: already a directory
if os.path.isdir(data_path):
print(f"[INFO] Using existing directory as data root: {data_path}")
return data_path
# Case 2: ZIP file (your Wang_CVPR2020.zip case)
if os.path.isfile(data_path) and data_path.lower().endswith(".zip"):
zip_abs = os.path.abspath(data_path)
zip_base = os.path.splitext(os.path.basename(zip_abs))[0] # e.g. "Wang_CVPR2020"
# We always extract into /content
extract_root = "/content"
target_dir = os.path.join(extract_root, zip_base) # /content/Wang_CVPR2020
# If target_dir doesn't exist or is empty -> extract
if not os.path.isdir(target_dir) or len(os.listdir(target_dir)) == 0:
print(f"[INFO] Extracting ZIP dataset from: {zip_abs}")
with zipfile.ZipFile(zip_abs, "r") as zf:
zf.extractall(extract_root)
print(f"[INFO] Extraction done under: {extract_root}")
else:
print(f"[INFO] Using already extracted data under: {target_dir}")
# Now we expect: /content/Wang_CVPR2020/training, /validation, /testing
if os.path.isdir(os.path.join(target_dir, "training")):
print(f"[INFO] Using data root: {target_dir}")
return target_dir
else:
# Fallback (rare): training not inside /content/Wang_CVPR2020
print(f"[WARN] 'training' folder not found inside {target_dir}. "
f"Using {extract_root} as data root.")
return extract_root
# Not a folder and not a ZIP
raise ValueError(f"Data path '{data_path}' is neither a directory nor a .zip file.")
# ==========================
# TRAINING
# ==========================
def run_training(args):
# ----- prepare data root (folder or zip) -----
data_root = prepare_data_root(args.data)
# ----- create base DRN model -----
model = models.__dict__[args.arch](args.pretrained)
# ----- adjust classifier to 2 classes -----
NUM_CLASSES = 2
in_channels = model.out_dim # DRN defines this as last feature dim
model.fc = nn.Conv2d(
in_channels,
NUM_CLASSES,
kernel_size=1,
stride=1,
padding=0,
bias=True
)
nn.init.kaiming_normal_(model.fc.weight, mode='fan_out', nonlinearity='relu')
if model.fc.bias is not None:
nn.init.constant_(model.fc.bias, 0.)
# ----- move to GPU & DataParallel -----
model = torch.nn.DataParallel(model).cuda()
best_prec1 = 0.0
# optionally resume from a checkpoint
if args.resume:
if os.path.isfile(args.resume):
print("=> loading checkpoint '{}'".format(args.resume))
checkpoint = torch.load(args.resume)
args.start_epoch = checkpoint['epoch']
best_prec1 = checkpoint['best_prec1']
model.load_state_dict(checkpoint['state_dict'])
print("=> loaded checkpoint '{}' (epoch {})"
.format(args.resume, checkpoint['epoch']))
else:
print("=> no checkpoint found at '{}'".format(args.resume))
cudnn.benchmark = True
# Data loading code
traindir = os.path.join(data_root, 'training')
valdir = os.path.join(data_root, 'validation')
normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])
train_loader = torch.utils.data.DataLoader(
datasets.ImageFolder(traindir, transforms.Compose([
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
normalize,
])),
batch_size=args.batch_size, shuffle=True,
num_workers=args.workers, pin_memory=True)
val_loader = torch.utils.data.DataLoader(
datasets.ImageFolder(valdir, transforms.Compose([
transforms.ToTensor(),
normalize,
])),
batch_size=args.batch_size, shuffle=False,
num_workers=args.workers, pin_memory=True)
# to check:
print("Train classes:", train_loader.dataset.classes)
print("Train class_to_idx:", train_loader.dataset.class_to_idx)
print("Val classes:", val_loader.dataset.classes)
print("Val class_to_idx:", val_loader.dataset.class_to_idx)
# define loss function (criterion) and optimizer
criterion = nn.CrossEntropyLoss().cuda()
optimizer = torch.optim.SGD(model.parameters(), args.lr,
momentum=args.momentum,
weight_decay=args.weight_decay)
for epoch in range(args.start_epoch, args.epochs):
adjust_learning_rate(args, optimizer, epoch)
# train for one epoch
train(args, train_loader, model, criterion, optimizer, epoch)
# evaluate on validation set
prec1 = validate(args, val_loader, model, criterion)
# remember best prec@1 and save checkpoint
is_best = prec1 > best_prec1
best_prec1 = max(prec1, best_prec1)
checkpoint_path = 'checkpoint_latest.pth.tar'
save_checkpoint({
'epoch': epoch + 1,
'arch': args.arch,
'state_dict': model.state_dict(),
'best_prec1': best_prec1,
}, is_best, filename=checkpoint_path)
if (epoch + 1) % args.check_freq == 0:
history_path = 'checkpoint_{:03d}.pth.tar'.format(epoch + 1)
shutil.copyfile(checkpoint_path, history_path)
# ==========================
# TESTING
# ==========================
def test_model(args):
# ----- prepare data root (folder or zip) -----
data_root = prepare_data_root(args.data)
# base DRN model
model = models.__dict__[args.arch](args.pretrained)
# adjust classifier to 2 classes
NUM_CLASSES = 2
in_channels = model.out_dim
model.fc = nn.Conv2d(in_channels, NUM_CLASSES, kernel_size=1, stride=1, padding=0, bias=True)
nn.init.kaiming_normal_(model.fc.weight, mode='fan_out', nonlinearity='relu')
if model.fc.bias is not None:
nn.init.constant_(model.fc.bias, 0.)
# move to GPU & wrap
model = torch.nn.DataParallel(model).cuda()
# Optionally load a checkpoint from --resume (for compatibility)
if args.resume:
if os.path.isfile(args.resume):
print("=> loading checkpoint '{}'".format(args.resume))
checkpoint = torch.load(args.resume)
args.start_epoch = checkpoint['epoch']
best_prec1 = checkpoint['best_prec1']
model.load_state_dict(checkpoint['state_dict'])
print("=> loaded checkpoint '{}' (epoch {})"
.format(args.resume, checkpoint['epoch']))
else:
print("=> no checkpoint found at '{}'".format(args.resume))
cudnn.benchmark = True
# Data loading code
# NOTE: your testing path: data_root/testing/crn
testdir = os.path.join(data_root, 'testing', 'crn')
normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])
t = transforms.Compose([
transforms.ToTensor(),
normalize])
test_loader = torch.utils.data.DataLoader(
datasets.ImageFolder(testdir, t),
batch_size=args.batch_size, shuffle=False,
num_workers=args.workers, pin_memory=True)
print("Test classes:", test_loader.dataset.classes)
print("Test class_to_idx:", test_loader.dataset.class_to_idx)
criterion = nn.CrossEntropyLoss().cuda()
# ---- evaluate LAST and BEST checkpoints with full metrics ----
num_params = count_parameters(model)
results = {}
def load_and_eval(ckpt_path, tag):
if not os.path.isfile(ckpt_path):
print(f"[WARN] Checkpoint not found: {ckpt_path}")
return
print(f"\n=== Evaluating {tag} checkpoint: {ckpt_path} ===")
checkpoint = torch.load(ckpt_path)
model.load_state_dict(checkpoint['state_dict'])
metrics = eval_loader_with_metrics(
test_loader, model, criterion, split_name="TEST"
)
metrics["params"] = num_params
results[tag] = metrics
# Paths used during training
last_ckpt = 'checkpoint_latest.pth.tar'
best_ckpt = 'model_best.pth.tar'
# 1) LAST epoch checkpoint
load_and_eval(last_ckpt, tag="LAST")
# 2) BEST validation checkpoint
load_and_eval(best_ckpt, tag="BEST")
# Print final table
print_results_table(results)
# ==========================
# TRAIN / VAL LOOP + METRICS
# ==========================
def train(args, train_loader, model, criterion, optimizer, epoch):
batch_time = AverageMeter()
data_time = AverageMeter()
losses = AverageMeter()
top1 = AverageMeter()
# switch to train mode
model.train()
end = time.time()
for i, (input, target) in enumerate(train_loader):
# measure data loading time
data_time.update(time.time() - end)
input = input.cuda(non_blocking=True)
target = target.cuda(non_blocking=True)
input_var = input
target_var = target
# compute output
output = model(input_var)
loss = criterion(output, target_var)
# measure accuracy and record loss
prec1, = accuracy(output.data, target, topk=(1,))
losses.update(loss.item(), input.size(0))
top1.update(prec1.item(), input.size(0))
# compute gradient and do SGD step
optimizer.zero_grad()
loss.backward()
optimizer.step()
# measure elapsed time
batch_time.update(time.time() - end)
end = time.time()
if i % args.print_freq == 0:
print('Epoch: [{0}][{1}/{2}]\t'
'Time {batch_time.val:.3f} ({batch_time.avg:.3f})\t'
'Data {data_time.val:.3f} ({data_time.avg:.3f})\t'
'Loss {loss.val:.4f} ({loss.avg:.4f})\t'
'Prec@1 {top1.val:.3f} ({top1.avg:.3f})\t'.format(
epoch, i, len(train_loader), batch_time=batch_time,
data_time=data_time, loss=losses, top1=top1))
def validate(args, test_loader, model, criterion):
batch_time = AverageMeter()
losses = AverageMeter()
top1 = AverageMeter()
# switch to evaluate mode
model.eval()
end = time.time()
for i, (input, target) in enumerate(test_loader):
input = input.cuda(non_blocking=True)
target = target.cuda(non_blocking=True)
with torch.no_grad():
# compute output
output = model(input)
loss = criterion(output, target)
# measure accuracy and record loss
prec1, = accuracy(output, target, topk=(1,))
losses.update(loss.item(), input.size(0))
top1.update(prec1.item(), input.size(0))
# measure elapsed time
batch_time.update(time.time() - end)
end = time.time()
if i % args.print_freq == 0:
print('Test: [{0}/{1}]\t'
'Time {batch_time.val:.3f} ({batch_time.avg:.3f})\t'
'Loss {loss.val:.4f} ({loss.avg:.4f})\t'
'Prec@1 {top1.val:.3f} ({top1.avg:.3f})'.format(
i, len(test_loader), batch_time=batch_time, loss=losses,
top1=top1))
print(' * Prec@1 {top1.avg:.3f}'.format(top1=top1))
return top1.avg
def save_selected_examples(images,
targets,
preds,
counters,
max_per_cat=10,
output_root="/content/drive/MyDrive/SimpleProcessing_DRN_Examples"):
"""
Save up to `max_per_cat` images per category:
- real_as_real : real (0) predicted real (0)
- fake_as_fake : fake (1) predicted fake (1)
- real_as_fake : real (0) predicted fake (1)
- fake_as_real : fake (1) predicted real (0)
Parameters
----------
images : torch.Tensor
Batch of images (B, C, H, W) on CPU, *normalized* with ImageNet mean/std.
targets : torch.Tensor
Ground-truth labels (B,) on CPU, 0 = real, 1 = fake.
preds : torch.Tensor
Predicted labels (B,) on CPU, 0 = real, 1 = fake.
counters : dict
Mutable dict tracking how many images saved per category.
max_per_cat : int
Maximum number of images to save for each category.
output_root : str
Root directory (on Drive) where folders will be created.
"""
os.makedirs(output_root, exist_ok=True)
subdirs = {
"real_as_real": os.path.join(output_root, "real_as_real"), # real -> real
"fake_as_fake": os.path.join(output_root, "fake_as_fake"), # fake -> fake
"real_as_fake": os.path.join(output_root, "real_as_fake"), # real -> fake
"fake_as_real": os.path.join(output_root, "fake_as_real"), # fake -> real
}
for p in subdirs.values():
os.makedirs(p, exist_ok=True)
# Unnormalize (ImageNet stats, same as your Normalize transform)
mean = torch.tensor([0.485, 0.456, 0.406]).view(1, 3, 1, 1)
std = torch.tensor([0.229, 0.224, 0.225]).view(1, 3, 1, 1)
B = images.size(0)
for i in range(B):
t = int(targets[i].item()) # 0 = real, 1 = fake
p = int(preds[i].item())
if t == 0 and p == 0:
key = "real_as_real"
elif t == 1 and p == 1:
key = "fake_as_fake"
elif t == 0 and p == 1:
key = "real_as_fake"
else: # t == 1 and p == 0
key = "fake_as_real"
# Skip if we already have enough examples of this type
if counters[key] >= max_per_cat:
continue
# Unnormalize and clamp to [0,1] for saving
img = images[i].unsqueeze(0) # (1, C, H, W)
img = img * std + mean
img = torch.clamp(img, 0.0, 1.0)
filename = f"{key}_{counters[key]:03d}_gt{t}_pred{p}.png"
save_path = os.path.join(subdirs[key], filename)
save_image(img, save_path)
counters[key] += 1
def eval_loader_with_metrics(loader, model, criterion, split_name="TEST"):
"""
Evaluate model on a loader and compute:
accuracy, sensitivity, specificity, loss, and computation time.
Assumes binary classification with labels {0,1}, where:
- Positive class = 1 (fake)
- Negative class = 0 (real)
"""
model.eval()
total_loss = 0.0
total_correct = 0
total_samples = 0
# Confusion matrix components
TP = TN = FP = FN = 0
start_time = time.time()
# ----------------------------------------
# Setup for saving anomaly examples ONCE
# ----------------------------------------
save_root = "/content/drive/MyDrive/SimpleProcessing_DRN_Examples"
max_per_cat = 10
save_counters = {
"real_as_real": 0, # real predicted real
"fake_as_fake": 0, # fake predicted fake
"real_as_fake": 0, # real predicted fake
"fake_as_real": 0, # fake predicted real
}
# ----------------------------------------
with torch.no_grad():
for input, target in loader:
# Keep CPU copy of normalized images for saving
images_cpu = input # (B, C, H, W) on CPU
input = input.cuda(non_blocking=True)
target = target.cuda(non_blocking=True)
output = model(input)
loss = criterion(output, target)
batch_size = target.size(0)
total_loss += loss.item() * batch_size
_, preds = torch.max(output, 1)
total_correct += torch.sum(preds == target).item()
total_samples += batch_size
# Update confusion matrix (binary)
for t, p in zip(target.cpu().numpy(), preds.cpu().numpy()):
if t == 1 and p == 1:
TP += 1
elif t == 0 and p == 0:
TN += 1
elif t == 0 and p == 1:
FP += 1
elif t == 1 and p == 0:
FN += 1
# -----------------------------------------------
# Save up to 10 images per category (4 categories)
# -----------------------------------------------
# Only keep saving while there is at least one category
# that hasn't reached max_per_cat.
if any(c < max_per_cat for c in save_counters.values()):
save_selected_examples(
images_cpu,
target.cpu(),
preds.cpu(),
save_counters,
max_per_cat=max_per_cat,
output_root=save_root,
)
# If you want to *completely* stop early once all 40 are saved,
# you could break here (but I’ll leave evaluation over full test set).
elapsed = time.time() - start_time
avg_loss = total_loss / total_samples if total_samples > 0 else 0.0
accuracy = total_correct / total_samples if total_samples > 0 else 0.0
sensitivity = TP / (TP + FN) if (TP + FN) > 0 else 0.0
specificity = TN / (TN + FP) if (TN + FP) > 0 else 0.0
print(f"{split_name} Loss: {avg_loss:.4f} Acc: {accuracy:.4f}")
print(f"{split_name} Sensitivity (TPR): {sensitivity:.4f}")
print(f"{split_name} Specificity (TNR): {specificity:.4f}")
print(f"{split_name} Time: {elapsed:.2f} sec")
return {
"loss": avg_loss,
"accuracy": accuracy,
"sensitivity": sensitivity,
"specificity": specificity,
"time": elapsed,
}
def save_checkpoint(state, is_best, filename='checkpoint.pth.tar'):
torch.save(state, filename)
if is_best:
shutil.copyfile(filename, 'model_best.pth.tar')
class AverageMeter(object):
"""Computes and stores the average and current value"""
def __init__(self):
self.reset()
def reset(self):
self.val = 0
self.avg = 0
self.sum = 0
self.count = 0
def update(self, val, n=1):
self.val = val
self.sum += val * n
self.count += n
self.avg = self.sum / self.count
def adjust_learning_rate(args, optimizer, epoch):
"""Sets the learning rate to the initial LR decayed by step_ratio every 30 epochs"""
lr = args.lr * (args.step_ratio ** (epoch // 30))
print('Epoch [{}] Learning rate: {}'.format(epoch, lr))
for param_group in optimizer.param_groups:
param_group['lr'] = lr
def accuracy(output, target, topk=(1,)):
"""Computes the precision@k for the specified values of k"""
maxk = max(topk)
batch_size = target.size(0)
_, pred = output.topk(maxk, 1, True, True)
pred = pred.t()
correct = pred.eq(target.view(1, -1).expand_as(pred))
res = []
for k in topk:
correct_k = correct[:k].view(-1).float().sum(0)
res.append(correct_k.mul_(100.0 / batch_size))
return res
def print_results_table(results):
"""
Print a copy-friendly table of metrics for different checkpoints.
results: dict[tag] = {
'accuracy', 'sensitivity', 'specificity', 'loss', 'time', 'params'
}
"""
print("\n================ FINAL TEST RESULTS =================")
print(f"{'Model':<8} | {'Acc':<8} | {'Sens':<8} | {'Spec':<8} | "
f"{'Loss':<8} | {'Time(s)':<8} | {'Params(M)':<10}")
print("-" * 90)
for name, r in results.items():
print(
f"{name:<8} | "
f"{r['accuracy']:.4f} | "
f"{r['sensitivity']:.4f} | "
f"{r['specificity']:.4f} | "
f"{r['loss']:.4f} | "
f"{r['time']:.2f} | "
f"{r['params'] / 1e6:.2f}"
)
if __name__ == '__main__':
main()