Spaces:
Running
Running
| # Copyright (C) 2021-2025, Mindee. | |
| # This program is licensed under the Apache License 2.0. | |
| # See LICENSE or go to <https://opensource.org/licenses/Apache-2.0> for full license details. | |
| import datetime | |
| import hashlib | |
| import logging | |
| import multiprocessing | |
| import os | |
| import time | |
| from pathlib import Path | |
| import numpy as np | |
| import torch | |
| # The following import is required for DDP | |
| import torch.distributed as dist | |
| from torch.nn.parallel import DistributedDataParallel as DDP | |
| from torch.optim.lr_scheduler import CosineAnnealingLR, MultiplicativeLR, OneCycleLR, PolynomialLR | |
| from torch.utils.data import DataLoader, RandomSampler, SequentialSampler | |
| from torch.utils.data.distributed import DistributedSampler | |
| from torchvision.transforms.v2 import Compose, Normalize, RandomGrayscale, RandomPhotometricDistort | |
| if os.getenv("TQDM_SLACK_TOKEN") and os.getenv("TQDM_SLACK_CHANNEL"): | |
| from tqdm.contrib.slack import tqdm | |
| else: | |
| from tqdm.auto import tqdm | |
| from doctr import transforms as T | |
| from doctr.datasets import DetectionDataset | |
| from doctr.models import detection, login_to_hub, push_to_hf_hub | |
| from doctr.utils.metrics import LocalizationConfusion | |
| from utils import EarlyStopper, plot_recorder, plot_samples | |
| def record_lr( | |
| model: torch.nn.Module, | |
| train_loader: DataLoader, | |
| batch_transforms, | |
| optimizer, | |
| start_lr: float = 1e-7, | |
| end_lr: float = 1, | |
| num_it: int = 100, | |
| amp: bool = False, | |
| ): | |
| """Gridsearch the optimal learning rate for the training. | |
| Adapted from https://github.com/frgfm/Holocron/blob/master/holocron/trainer/core.py | |
| """ | |
| if num_it > len(train_loader): | |
| raise ValueError("the value of `num_it` needs to be lower than the number of available batches") | |
| model = model.train() | |
| # Update param groups & LR | |
| optimizer.defaults["lr"] = start_lr | |
| for pgroup in optimizer.param_groups: | |
| pgroup["lr"] = start_lr | |
| gamma = (end_lr / start_lr) ** (1 / (num_it - 1)) | |
| scheduler = MultiplicativeLR(optimizer, lambda step: gamma) | |
| lr_recorder = [start_lr * gamma**idx for idx in range(num_it)] | |
| loss_recorder = [] | |
| if amp: | |
| scaler = torch.cuda.amp.GradScaler() | |
| for batch_idx, (images, targets) in enumerate(train_loader): | |
| if torch.cuda.is_available(): | |
| images = images.cuda() | |
| images = batch_transforms(images) | |
| # Forward, Backward & update | |
| optimizer.zero_grad() | |
| if amp: | |
| with torch.cuda.amp.autocast(): | |
| train_loss = model(images, targets)["loss"] | |
| scaler.scale(train_loss).backward() | |
| # Gradient clipping | |
| scaler.unscale_(optimizer) | |
| torch.nn.utils.clip_grad_norm_(model.parameters(), 5) | |
| # Update the params | |
| scaler.step(optimizer) | |
| scaler.update() | |
| else: | |
| train_loss = model(images, targets)["loss"] | |
| train_loss.backward() | |
| torch.nn.utils.clip_grad_norm_(model.parameters(), 5) | |
| optimizer.step() | |
| # Update LR | |
| scheduler.step() | |
| # Record | |
| if not torch.isfinite(train_loss): | |
| if batch_idx == 0: | |
| raise ValueError("loss value is NaN or inf.") | |
| else: | |
| break | |
| loss_recorder.append(train_loss.item()) | |
| # Stop after the number of iterations | |
| if batch_idx + 1 == num_it: | |
| break | |
| return lr_recorder[: len(loss_recorder)], loss_recorder | |
| def fit_one_epoch(model, train_loader, batch_transforms, optimizer, scheduler, amp=False, log=None, rank=0): | |
| if amp: | |
| scaler = torch.cuda.amp.GradScaler() | |
| model.train() | |
| # Iterate over the batches of the dataset | |
| epoch_train_loss, batch_cnt = 0, 0 | |
| pbar = tqdm(train_loader, dynamic_ncols=True, disable=(rank != 0)) | |
| for images, targets in pbar: | |
| if torch.cuda.is_available(): | |
| images = images.cuda() | |
| images = batch_transforms(images) | |
| optimizer.zero_grad() | |
| if amp: | |
| with torch.cuda.amp.autocast(): | |
| train_loss = model(images, targets)["loss"] | |
| scaler.scale(train_loss).backward() | |
| # Gradient clipping | |
| scaler.unscale_(optimizer) | |
| torch.nn.utils.clip_grad_norm_(model.parameters(), 5) | |
| # Update the params | |
| scaler.step(optimizer) | |
| scaler.update() | |
| else: | |
| train_loss = model(images, targets)["loss"] | |
| train_loss.backward() | |
| torch.nn.utils.clip_grad_norm_(model.parameters(), 5) | |
| optimizer.step() | |
| scheduler.step() | |
| last_lr = scheduler.get_last_lr()[0] | |
| pbar.set_description(f"Training loss: {train_loss.item():.6} | LR: {last_lr:.6}") | |
| if log: | |
| log(train_loss=train_loss.item(), lr=last_lr) | |
| epoch_train_loss += train_loss.item() | |
| batch_cnt += 1 | |
| epoch_train_loss /= batch_cnt | |
| return epoch_train_loss, last_lr | |
| def evaluate(model, val_loader, batch_transforms, val_metric, args, amp=False, log=None): | |
| # Model in eval mode | |
| model.eval() | |
| # Reset val metric | |
| val_metric.reset() | |
| # Validation loop | |
| val_loss, batch_cnt = 0, 0 | |
| pbar = tqdm(val_loader, dynamic_ncols=True) | |
| for images, targets in pbar: | |
| if torch.cuda.is_available(): | |
| images = images.cuda() | |
| images = batch_transforms(images) | |
| if amp: | |
| with torch.cuda.amp.autocast(): | |
| out = model(images, targets, return_preds=True) | |
| else: | |
| out = model(images, targets, return_preds=True) | |
| # Compute metric | |
| loc_preds = out["preds"] | |
| for target, loc_pred in zip(targets, loc_preds): | |
| for boxes_gt, boxes_pred in zip(target.values(), loc_pred.values()): | |
| if args.rotation and args.eval_straight: | |
| # Convert pred to boxes [xmin, ymin, xmax, ymax] N, 5, 2 (with scores) --> N, 4 | |
| boxes_pred = np.concatenate((boxes_pred[:, :4].min(axis=1), boxes_pred[:, :4].max(axis=1)), axis=-1) | |
| val_metric.update(gts=boxes_gt, preds=boxes_pred[:, :4]) | |
| pbar.set_description(f"Validation loss: {out['loss'].item():.6}") | |
| if log: | |
| log(val_loss=out["loss"].item()) | |
| val_loss += out["loss"].item() | |
| batch_cnt += 1 | |
| val_loss /= batch_cnt | |
| recall, precision, mean_iou = val_metric.summary() | |
| return val_loss, recall, precision, mean_iou | |
| def main(args): | |
| # Detect distributed setup | |
| # variable is set by torchrun | |
| world_size = int(os.environ.get("WORLD_SIZE", 1)) | |
| distributed = world_size > 1 | |
| # GPU setup | |
| if distributed: | |
| rank = int(os.environ.get("LOCAL_RANK", 0)) | |
| dist.init_process_group(backend=args.backend) | |
| device = torch.device("cuda", rank) | |
| torch.cuda.set_device(device) | |
| else: | |
| # single process | |
| rank = 0 | |
| if isinstance(args.device, int): | |
| if not torch.cuda.is_available(): | |
| raise AssertionError("PyTorch cannot access your GPU. Please investigate!") | |
| if args.device >= torch.cuda.device_count(): | |
| raise ValueError("Invalid device index") | |
| device = torch.device("cuda", args.device) | |
| # Silent default switch to GPU if available | |
| elif torch.cuda.is_available(): | |
| device = torch.device("cuda", 0) | |
| else: | |
| logging.warning("No accessible GPU, target device set to CPU.") | |
| device = torch.device("cpu") | |
| slack_token = os.getenv("TQDM_SLACK_TOKEN") | |
| slack_channel = os.getenv("TQDM_SLACK_CHANNEL") | |
| pbar = tqdm(disable=False if (slack_token and slack_channel) and (rank == 0) else True) | |
| if slack_token and slack_channel: | |
| # Monkey patch tqdm write method to send messages directly to Slack | |
| pbar.write = lambda msg: pbar.sio.client.chat_postMessage(channel=slack_channel, text=msg) | |
| pbar.write(str(args)) | |
| if rank == 0 and args.push_to_hub: | |
| login_to_hub() | |
| if not isinstance(args.workers, int): | |
| args.workers = min(16, multiprocessing.cpu_count()) | |
| torch.backends.cudnn.benchmark = True | |
| # placeholder for class names | |
| cls_container = [None] | |
| if rank == 0: | |
| # validation dataset related code | |
| st = time.time() | |
| val_set = DetectionDataset( | |
| img_folder=os.path.join(args.val_path, "images"), | |
| label_path=os.path.join(args.val_path, "labels.json"), | |
| sample_transforms=T.SampleCompose( | |
| ( | |
| [T.Resize((args.input_size, args.input_size), preserve_aspect_ratio=True, symmetric_pad=True)] | |
| if not args.rotation or args.eval_straight | |
| else [] | |
| ) | |
| + ( | |
| [ | |
| T.Resize(args.input_size, preserve_aspect_ratio=True), # This does not pad | |
| T.RandomApply(T.RandomRotate(90, expand=True), 0.5), | |
| T.Resize((args.input_size, args.input_size), preserve_aspect_ratio=True, symmetric_pad=True), | |
| ] | |
| if args.rotation and not args.eval_straight | |
| else [] | |
| ) | |
| ), | |
| use_polygons=args.rotation and not args.eval_straight, | |
| ) | |
| val_loader = DataLoader( | |
| val_set, | |
| batch_size=args.batch_size, | |
| drop_last=False, | |
| num_workers=args.workers, | |
| sampler=SequentialSampler(val_set), | |
| pin_memory=torch.cuda.is_available(), | |
| collate_fn=val_set.collate_fn, | |
| ) | |
| pbar.write( | |
| f"Validation set loaded in {time.time() - st:.4}s ({len(val_set)} samples in {len(val_loader)} batches)" | |
| ) | |
| with open(os.path.join(args.val_path, "labels.json"), "rb") as f: | |
| val_hash = hashlib.sha256(f.read()).hexdigest() | |
| cls_container[0] = val_set.class_names | |
| if distributed: | |
| # broadcast class names to all ranks | |
| dist.broadcast_object_list(cls_container, src=0) | |
| # unpack class names on all ranks | |
| class_names = cls_container[0] | |
| batch_transforms = Normalize(mean=(0.798, 0.785, 0.772), std=(0.264, 0.2749, 0.287)) | |
| # Load docTR model | |
| model = detection.__dict__[args.arch]( | |
| pretrained=args.pretrained, | |
| assume_straight_pages=not args.rotation, | |
| class_names=class_names, | |
| ) | |
| # Resume weights | |
| if isinstance(args.resume, str): | |
| pbar.write(f"Resuming {args.resume}") | |
| model.from_pretrained(args.resume) | |
| if rank == 0: | |
| # Metrics | |
| val_metric = LocalizationConfusion(use_polygons=args.rotation and not args.eval_straight) | |
| if rank == 0 and args.test_only: | |
| pbar.write("Running evaluation") | |
| val_loss, recall, precision, mean_iou = evaluate( | |
| model, val_loader, batch_transforms, val_metric, args, amp=args.amp | |
| ) | |
| pbar.write( | |
| f"Validation loss: {val_loss:.6} (Recall: {recall:.2%} | Precision: {precision:.2%} | " | |
| f"Mean IoU: {mean_iou:.2%})" | |
| ) | |
| return | |
| st = time.time() | |
| # Augmentations | |
| # Image augmentations | |
| img_transforms = T.OneOf([ | |
| Compose([ | |
| T.RandomApply(T.ColorInversion(), 0.3), | |
| T.RandomApply(T.GaussianBlur(sigma=(0.5, 1.5)), 0.2), | |
| ]), | |
| Compose([ | |
| T.RandomApply(T.RandomShadow(), 0.3), | |
| T.RandomApply(T.GaussianNoise(), 0.1), | |
| T.RandomApply(T.GaussianBlur(sigma=(0.5, 1.5)), 0.3), | |
| RandomGrayscale(p=0.15), | |
| ]), | |
| RandomPhotometricDistort(p=0.3), | |
| lambda x: x, # Identity no transformation | |
| ]) | |
| # Image + target augmentations | |
| sample_transforms = T.SampleCompose( | |
| ( | |
| [ | |
| T.RandomHorizontalFlip(0.15), | |
| T.OneOf([ | |
| T.RandomApply(T.RandomCrop(ratio=(0.6, 1.33)), 0.25), | |
| T.RandomResize(scale_range=(0.4, 0.9), preserve_aspect_ratio=0.5, symmetric_pad=0.5, p=0.25), | |
| ]), | |
| T.Resize((args.input_size, args.input_size), preserve_aspect_ratio=True, symmetric_pad=True), | |
| ] | |
| if not args.rotation | |
| else [ | |
| T.RandomHorizontalFlip(0.15), | |
| T.OneOf([ | |
| T.RandomApply(T.RandomCrop(ratio=(0.6, 1.33)), 0.25), | |
| T.RandomResize(scale_range=(0.4, 0.9), preserve_aspect_ratio=0.5, symmetric_pad=0.5, p=0.25), | |
| ]), | |
| # Rotation augmentation | |
| T.Resize(args.input_size, preserve_aspect_ratio=True), | |
| T.RandomApply(T.RandomRotate(90, expand=True), 0.5), | |
| T.Resize((args.input_size, args.input_size), preserve_aspect_ratio=True, symmetric_pad=True), | |
| ] | |
| ) | |
| ) | |
| # Load both train and val data generators | |
| train_set = DetectionDataset( | |
| img_folder=os.path.join(args.train_path, "images"), | |
| label_path=os.path.join(args.train_path, "labels.json"), | |
| img_transforms=img_transforms, | |
| sample_transforms=sample_transforms, | |
| use_polygons=args.rotation, | |
| ) | |
| if distributed: | |
| sampler = DistributedSampler(train_set, rank=rank, shuffle=False, drop_last=True) | |
| else: | |
| sampler = RandomSampler(train_set) | |
| train_loader = DataLoader( | |
| train_set, | |
| batch_size=args.batch_size, | |
| drop_last=True, | |
| num_workers=args.workers, | |
| sampler=sampler, | |
| pin_memory=torch.cuda.is_available(), | |
| collate_fn=train_set.collate_fn, | |
| ) | |
| if rank == 0: | |
| pbar.write( | |
| f"Train set loaded in {time.time() - st:.4}s ({len(train_set)} samples in {len(train_loader)} batches)" | |
| ) | |
| with open(os.path.join(args.train_path, "labels.json"), "rb") as f: | |
| train_hash = hashlib.sha256(f.read()).hexdigest() | |
| if rank == 0 and args.show_samples: | |
| x, target = next(iter(train_loader)) | |
| plot_samples(x, target) | |
| return | |
| # Backbone freezing | |
| if args.freeze_backbone: | |
| for p in model.feat_extractor.parameters(): | |
| p.requires_grad = False | |
| if torch.cuda.is_available(): | |
| torch.cuda.set_device(device) | |
| model = model.to(device) | |
| if distributed: | |
| # construct DDP model | |
| model = DDP(model, device_ids=[rank]) | |
| # Optimizer | |
| if args.optim == "adam": | |
| optimizer = torch.optim.Adam( | |
| [p for p in model.parameters() if p.requires_grad], | |
| args.lr, | |
| betas=(0.95, 0.999), | |
| eps=1e-6, | |
| weight_decay=args.weight_decay, | |
| ) | |
| elif args.optim == "adamw": | |
| optimizer = torch.optim.AdamW( | |
| [p for p in model.parameters() if p.requires_grad], | |
| args.lr, | |
| betas=(0.9, 0.999), | |
| eps=1e-6, | |
| weight_decay=args.weight_decay or 1e-4, | |
| ) | |
| # LR Finder | |
| if rank == 0 and args.find_lr: | |
| lrs, losses = record_lr(model, train_loader, batch_transforms, optimizer, amp=args.amp) | |
| plot_recorder(lrs, losses) | |
| return | |
| # Scheduler | |
| if args.sched == "cosine": | |
| scheduler = CosineAnnealingLR(optimizer, args.epochs * len(train_loader), eta_min=args.lr / 25e4) | |
| elif args.sched == "onecycle": | |
| scheduler = OneCycleLR(optimizer, args.lr, args.epochs * len(train_loader)) | |
| elif args.sched == "poly": | |
| scheduler = PolynomialLR(optimizer, args.epochs * len(train_loader)) | |
| # Training monitoring | |
| current_time = datetime.datetime.now().strftime("%Y%m%d-%H%M%S") | |
| exp_name = f"{args.arch}_{current_time}" if args.name is None else args.name | |
| if rank == 0: | |
| config = { | |
| "learning_rate": args.lr, | |
| "epochs": args.epochs, | |
| "weight_decay": args.weight_decay, | |
| "batch_size": args.batch_size, | |
| "architecture": args.arch, | |
| "input_size": args.input_size, | |
| "optimizer": args.optim, | |
| "framework": "pytorch", | |
| "scheduler": args.sched, | |
| "train_hash": train_hash, | |
| "val_hash": val_hash, | |
| "pretrained": args.pretrained, | |
| "rotation": args.rotation, | |
| "amp": args.amp, | |
| } | |
| global global_step | |
| global_step = 0 # Shared global step counter | |
| # W&B | |
| if args.wb: | |
| import wandb | |
| run = wandb.init(name=exp_name, project="text-detection", config=config) | |
| def wandb_log_at_step(train_loss=None, val_loss=None, lr=None): | |
| wandb.log({ | |
| **({"train_loss_step": train_loss} if train_loss is not None else {}), | |
| **({"val_loss_step": val_loss} if val_loss is not None else {}), | |
| **({"step_lr": lr} if lr is not None else {}), | |
| }) | |
| # ClearML | |
| if args.clearml: | |
| from clearml import Logger, Task | |
| task = Task.init(project_name="docTR/text-detection", task_name=exp_name, reuse_last_task_id=False) | |
| task.upload_artifact("config", config) | |
| def clearml_log_at_step(train_loss=None, val_loss=None, lr=None): | |
| logger = Logger.current_logger() | |
| if train_loss is not None: | |
| logger.report_scalar( | |
| title="Training Step Loss", | |
| series="train_loss_step", | |
| iteration=global_step, | |
| value=train_loss, | |
| ) | |
| if val_loss is not None: | |
| logger.report_scalar( | |
| title="Validation Step Loss", | |
| series="val_loss_step", | |
| iteration=global_step, | |
| value=val_loss, | |
| ) | |
| if lr is not None: | |
| logger.report_scalar( | |
| title="Step Learning Rate", | |
| series="step_lr", | |
| iteration=global_step, | |
| value=lr, | |
| ) | |
| # Unified logger | |
| def log_at_step(train_loss=None, val_loss=None, lr=None): | |
| global global_step | |
| if args.wb: | |
| wandb_log_at_step(train_loss, val_loss, lr) | |
| if args.clearml: | |
| clearml_log_at_step(train_loss, val_loss, lr) | |
| global_step += 1 # Increment the shared global step counter | |
| # Create loss queue | |
| min_loss = np.inf | |
| if args.early_stop: | |
| early_stopper = EarlyStopper(patience=args.early_stop_epochs, min_delta=args.early_stop_delta) | |
| # Training loop | |
| for epoch in range(args.epochs): | |
| train_loss, actual_lr = fit_one_epoch( | |
| model, train_loader, batch_transforms, optimizer, scheduler, amp=args.amp, log=log_at_step, rank=rank | |
| ) | |
| if rank == 0: | |
| pbar.write(f"Epoch {epoch + 1}/{args.epochs} - Training loss: {train_loss:.6} | LR: {actual_lr:.6}") | |
| # Validation loop at the end of each epoch | |
| val_loss, recall, precision, mean_iou = evaluate( | |
| model, val_loader, batch_transforms, val_metric, args, amp=args.amp, log=log_at_step | |
| ) | |
| params = model.module if hasattr(model, "module") else model | |
| if val_loss < min_loss: | |
| pbar.write(f"Validation loss decreased {min_loss:.6} --> {val_loss:.6}: saving state...") | |
| torch.save(params.state_dict(), Path(args.output_dir) / f"{exp_name}.pt") | |
| min_loss = val_loss | |
| if args.save_interval_epoch: | |
| pbar.write(f"Saving state at epoch: {epoch + 1}") | |
| torch.save(params.state_dict(), Path(args.output_dir) / f"{exp_name}_epoch{epoch + 1}.pt") | |
| log_msg = f"Epoch {epoch + 1}/{args.epochs} - Validation loss: {val_loss:.6} " | |
| if any(val is None for val in (recall, precision, mean_iou)): | |
| log_msg += "(Undefined metric value, caused by empty GTs or predictions)" | |
| else: | |
| log_msg += f"(Recall: {recall:.2%} | Precision: {precision:.2%} | Mean IoU: {mean_iou:.2%})" | |
| pbar.write(log_msg) | |
| # W&B | |
| if args.wb: | |
| wandb.log({ | |
| "train_loss": train_loss, | |
| "val_loss": val_loss, | |
| "learning_rate": actual_lr, | |
| "recall": recall, | |
| "precision": precision, | |
| "mean_iou": mean_iou, | |
| }) | |
| # ClearML | |
| if args.clearml: | |
| from clearml import Logger | |
| logger = Logger.current_logger() | |
| logger.report_scalar(title="Training Loss", series="train_loss", value=train_loss, iteration=epoch) | |
| logger.report_scalar(title="Validation Loss", series="val_loss", value=val_loss, iteration=epoch) | |
| logger.report_scalar(title="Learning Rate", series="lr", value=actual_lr, iteration=epoch) | |
| logger.report_scalar(title="Recall", series="recall", value=recall, iteration=epoch) | |
| logger.report_scalar(title="Precision", series="precision", value=precision, iteration=epoch) | |
| logger.report_scalar(title="Mean IoU", series="mean_iou", value=mean_iou, iteration=epoch) | |
| if args.early_stop and early_stopper.early_stop(val_loss): | |
| pbar.write("Training halted early due to reaching patience limit.") | |
| break | |
| if rank == 0: | |
| if args.wb: | |
| run.finish() | |
| if args.push_to_hub: | |
| push_to_hf_hub(model, exp_name, task="detection", run_config=args) | |
| def parse_args(): | |
| import argparse | |
| parser = argparse.ArgumentParser( | |
| description="DocTR training script for text detection (PyTorch)", | |
| formatter_class=argparse.ArgumentDefaultsHelpFormatter, | |
| ) | |
| # DDP related args | |
| parser.add_argument("--backend", default="nccl", type=str, help="Backend to use for torch.distributed") | |
| parser.add_argument( | |
| "--device", | |
| default=None, | |
| type=int, | |
| help="Specify gpu device for single-gpu training. In destributed setting, this parameter is ignored", | |
| ) | |
| parser.add_argument("arch", type=str, help="text-detection model to train") | |
| parser.add_argument("--output_dir", type=str, default=".", help="path to save checkpoints and final model") | |
| parser.add_argument("--train_path", type=str, required=True, help="path to training data folder") | |
| parser.add_argument("--val_path", type=str, required=True, help="path to validation data folder") | |
| parser.add_argument("--name", type=str, default=None, help="Name of your training experiment") | |
| parser.add_argument("--epochs", type=int, default=10, help="number of epochs to train the model on") | |
| parser.add_argument("-b", "--batch_size", type=int, default=2, help="batch size for training") | |
| parser.add_argument( | |
| "--save-interval-epoch", dest="save_interval_epoch", action="store_true", help="Save model every epoch" | |
| ) | |
| parser.add_argument("--input_size", type=int, default=1024, help="model input size, H = W") | |
| parser.add_argument("--lr", type=float, default=0.001, help="learning rate for the optimizer (Adam or AdamW)") | |
| parser.add_argument("--wd", "--weight-decay", default=0, type=float, help="weight decay", dest="weight_decay") | |
| parser.add_argument("-j", "--workers", type=int, default=None, help="number of workers used for dataloading") | |
| parser.add_argument("--resume", type=str, default=None, help="Path to your checkpoint") | |
| parser.add_argument("--test-only", dest="test_only", action="store_true", help="Run the validation loop") | |
| parser.add_argument( | |
| "--freeze-backbone", dest="freeze_backbone", action="store_true", help="freeze model backbone for fine-tuning" | |
| ) | |
| parser.add_argument( | |
| "--show-samples", dest="show_samples", action="store_true", help="Display unormalized training samples" | |
| ) | |
| parser.add_argument("--wb", dest="wb", action="store_true", help="Log to Weights & Biases") | |
| parser.add_argument("--clearml", dest="clearml", action="store_true", help="Log to ClearML") | |
| parser.add_argument("--push-to-hub", dest="push_to_hub", action="store_true", help="Push to Huggingface Hub") | |
| parser.add_argument( | |
| "--pretrained", | |
| dest="pretrained", | |
| action="store_true", | |
| help="Load pretrained parameters before starting the training", | |
| ) | |
| parser.add_argument("--rotation", dest="rotation", action="store_true", help="train with rotated documents") | |
| parser.add_argument( | |
| "--eval-straight", | |
| action="store_true", | |
| help="metrics evaluation with straight boxes instead of polygons to save time + memory", | |
| ) | |
| parser.add_argument("--optim", type=str, default="adam", choices=["adam", "adamw"], help="optimizer to use") | |
| parser.add_argument( | |
| "--sched", type=str, default="poly", choices=["cosine", "onecycle", "poly"], help="scheduler to use" | |
| ) | |
| parser.add_argument("--amp", dest="amp", help="Use Automatic Mixed Precision", action="store_true") | |
| parser.add_argument("--find-lr", action="store_true", help="Gridsearch the optimal LR") | |
| parser.add_argument("--early-stop", action="store_true", help="Enable early stopping") | |
| parser.add_argument("--early-stop-epochs", type=int, default=5, help="Patience for early stopping") | |
| parser.add_argument("--early-stop-delta", type=float, default=0.01, help="Minimum Delta for early stopping") | |
| args = parser.parse_args() | |
| return args | |
| if __name__ == "__main__": | |
| args = parse_args() | |
| main(args) | |