File size: 16,123 Bytes
7111e1a | 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 | # Training Script for CRNN+CTC Civil Registry OCR Includes CTC loss, learning rate scheduling, and model checkpointing
import torch
import torch.nn as nn
import torch.optim as optim
from torch.utils.data import DataLoader
import os
from tqdm import tqdm
import numpy as np
from pathlib import Path
import json
from crnn_model import get_crnn_model, initialize_weights
from dataset import CivilRegistryDataset, collate_fn
from utils import (
decode_ctc_predictions,
calculate_cer,
calculate_wer,
EarlyStopping
)
class CRNNTrainer:
"""
Trainer class for CRNN+CTC model
"""
def __init__(self, config):
self.config = config
self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# Create directories
self.checkpoint_dir = Path(config['checkpoint_dir'])
self.log_dir = Path(config['log_dir'])
self.checkpoint_dir.mkdir(parents=True, exist_ok=True)
self.log_dir.mkdir(parents=True, exist_ok=True)
# Initialize datasets
print("Loading datasets...")
self.train_dataset = CivilRegistryDataset(
data_dir=config['train_data_dir'],
annotations_file=config['train_annotations'],
img_height=config['img_height'],
img_width=config['img_width'],
augment=True,
form_type=config.get('form_type', 'all')
)
self.val_dataset = CivilRegistryDataset(
data_dir=config['val_data_dir'],
annotations_file=config['val_annotations'],
img_height=config['img_height'],
img_width=config['img_width'],
augment=False,
form_type=config.get('form_type', 'all')
)
# Create data loaders
self.train_loader = DataLoader(
self.train_dataset,
batch_size=config['batch_size'],
shuffle=True,
num_workers=config['num_workers'],
collate_fn=collate_fn,
pin_memory=False
)
self.val_loader = DataLoader(
self.val_dataset,
batch_size=config['batch_size'],
shuffle=False,
num_workers=config['num_workers'],
collate_fn=collate_fn,
pin_memory=False
)
# Initialize model
print(f"Initializing model on {self.device}...")
self.model = get_crnn_model(
model_type=config.get('model_type', 'standard'),
img_height=config['img_height'],
num_chars=self.train_dataset.num_chars,
hidden_size=config['hidden_size'],
num_lstm_layers=config['num_lstm_layers']
)
self.model = self.model.to(self.device)
# Loss function - CTC Loss
self.criterion = nn.CTCLoss(blank=0, zero_infinity=True)
# Optimizer β lower LR prevents CTC collapse on epoch 1
self.optimizer = optim.Adam(
self.model.parameters(),
lr=config['learning_rate'],
weight_decay=config.get('weight_decay', 1e-4) # FIXED: fallback was 1e-5
)
# Warmup scheduler: ramp LR from near-zero to target over first N epochs,
# then hand off to ReduceLROnPlateau.
# This is the single most effective fix for CTC blank collapse.
warmup_epochs = config.get('warmup_epochs', 5)
def warmup_lambda(epoch):
if epoch < warmup_epochs:
return (epoch + 1) / warmup_epochs # gradual: 0.2β0.4β0.6β0.8β1.0
return 1.0
self.warmup_scheduler = optim.lr_scheduler.LambdaLR(
self.optimizer, lr_lambda=warmup_lambda)
# ReduceLROnPlateau kicks in after warmup
self.scheduler = optim.lr_scheduler.ReduceLROnPlateau(
self.optimizer,
mode='min',
factor=0.5,
patience=config.get('lr_patience', 5),
min_lr=1e-6
)
self._warmup_epochs = warmup_epochs
# Early stopping
self.early_stopping = EarlyStopping(
patience=config.get('early_stopping_patience', 10),
min_delta=config.get('min_delta', 0.001)
)
# Training history
self.history = {
'train_loss': [],
'val_loss': [],
'val_cer': [],
'val_wer': [],
'learning_rates': []
}
# ββ Resume from checkpoint if available ββββββββββββββ
self.start_epoch = 1
self.best_val_loss = float('inf')
resume_path = self.checkpoint_dir / 'latest_checkpoint.pth'
if resume_path.exists():
print(f"\n Found checkpoint: {resume_path}")
print(f" Resuming training from last saved epoch...")
ckpt = torch.load(resume_path, map_location=self.device, weights_only=False)
self.model.load_state_dict(ckpt['model_state_dict'])
self.optimizer.load_state_dict(ckpt['optimizer_state_dict'])
self.scheduler.load_state_dict(ckpt['scheduler_state_dict'])
if 'warmup_scheduler_state_dict' in ckpt:
self.warmup_scheduler.load_state_dict(ckpt['warmup_scheduler_state_dict'])
self.start_epoch = ckpt['epoch'] + 1
self.best_val_loss = ckpt.get('val_loss', float('inf'))
self.history = ckpt.get('history', self.history)
print(f" β Resumed from Epoch {ckpt['epoch']} "
f"(Val Loss: {ckpt['val_loss']:.4f}, CER: {ckpt['val_cer']:.2f}%)")
else:
print(f" No checkpoint found β starting fresh.")
initialize_weights(self.model)
print(f"β Model ready with {sum(p.numel() for p in self.model.parameters()):,} parameters")
def train_epoch(self, epoch):
"""Train for one epoch"""
self.model.train()
total_loss = 0
pbar = tqdm(self.train_loader, desc=f"Epoch {epoch}/{self.config['epochs']}")
nan_count = 0
for batch_idx, (images, targets, target_lengths, _) in enumerate(pbar):
images = images.to(self.device)
targets = targets.to(self.device)
# FIXED: zero_grad before forward pass (was incorrectly placed after loss)
self.optimizer.zero_grad()
# Forward pass
outputs = self.model(images) # [seq_len, batch, num_chars]
# Apply log_softmax for CTC
log_probs = nn.functional.log_softmax(outputs, dim=2)
# Calculate sequence lengths
batch_size = images.size(0)
input_lengths = torch.full(
size=(batch_size,),
fill_value=outputs.size(0),
dtype=torch.long
).to(self.device)
# CTC loss
loss = self.criterion(
log_probs,
targets,
input_lengths,
target_lengths
)
# FIXED: skip NaN/Inf batches β accumulating them corrupts gradients
if torch.isnan(loss) or torch.isinf(loss):
nan_count += 1
continue
# Backward pass
loss.backward()
# Gradient clipping to prevent exploding gradients
torch.nn.utils.clip_grad_norm_(self.model.parameters(), 5.0)
self.optimizer.step()
total_loss += loss.item()
# Update progress bar
pbar.set_postfix({
'loss': f'{loss.item():.4f}',
'avg_loss': f'{total_loss / (batch_idx + 1):.4f}'
})
if nan_count > 0:
print(f" [WARNING] {nan_count} NaN/Inf batches skipped this epoch.")
avg_loss = total_loss / len(self.train_loader)
return avg_loss
def validate(self):
"""Validate the model"""
self.model.eval()
total_loss = 0
all_predictions = []
all_ground_truths = []
with torch.no_grad():
for images, targets, target_lengths, texts in tqdm(self.val_loader, desc="Validating"):
images = images.to(self.device)
targets_gpu = targets.to(self.device)
# Forward pass
outputs = self.model(images)
log_probs = nn.functional.log_softmax(outputs, dim=2)
# CTC loss
batch_size = images.size(0)
input_lengths = torch.full(
size=(batch_size,),
fill_value=outputs.size(0),
dtype=torch.long
).to(self.device)
loss = self.criterion(log_probs, targets_gpu, input_lengths, target_lengths)
total_loss += loss.item()
# Decode predictions
predictions = decode_ctc_predictions(
outputs.cpu(),
self.train_dataset.idx_to_char
)
all_predictions.extend(predictions)
all_ground_truths.extend(texts)
avg_loss = total_loss / len(self.val_loader)
# Calculate metrics
cer = calculate_cer(all_predictions, all_ground_truths)
wer = calculate_wer(all_predictions, all_ground_truths)
return avg_loss, cer, wer, all_predictions, all_ground_truths
def train(self):
"""Main training loop"""
print("\n" + "=" * 70)
print("Starting Training")
print("=" * 70)
best_val_loss = self.best_val_loss
for epoch in range(self.start_epoch, self.config['epochs'] + 1):
print(f"\nEpoch {epoch}/{self.config['epochs']}")
print("-" * 70)
# Train
train_loss = self.train_epoch(epoch)
# Validate
val_loss, val_cer, val_wer, predictions, ground_truths = self.validate()
# Learning rate scheduling
# Use warmup for first N epochs, then ReduceLROnPlateau
if epoch <= self._warmup_epochs:
self.warmup_scheduler.step()
else:
self.scheduler.step(val_loss)
current_lr = self.optimizer.param_groups[0]['lr']
# Update history
self.history['train_loss'].append(train_loss)
self.history['val_loss'].append(val_loss)
self.history['val_cer'].append(val_cer)
self.history['val_wer'].append(val_wer)
self.history['learning_rates'].append(current_lr)
# Print metrics
print(f"\nMetrics:")
print(f" Train Loss: {train_loss:.4f}")
print(f" Val Loss: {val_loss:.4f}")
print(f" Val CER: {val_cer:.2f}%")
print(f" Val WER: {val_wer:.2f}%")
print(f" LR: {current_lr:.6f}")
# Print sample predictions
print(f"\nSample Predictions:")
for i in range(min(3, len(predictions))):
print(f" GT: {ground_truths[i]}")
print(f" Pred: {predictions[i]}")
print()
# show raw model output
with torch.no_grad():
sample_img = self.val_dataset[0][0].unsqueeze(0).to(self.device)
raw_out = self.model(sample_img)
probs = torch.softmax(raw_out, dim=2)
best_idx = probs[:, 0, :].argmax(dim=1)
best_prob = probs[:, 0, :].max(dim=1).values
blank_pct = (best_idx == 0).float().mean().item() * 100
avg_conf = best_prob.mean().item()
non_blank = [self.train_dataset.idx_to_char.get(i.item(), '?')
for i in best_idx if i.item() != 0]
print(f" blank={blank_pct:.0f}% conf={avg_conf:.3f} "
f"chars={''.join(non_blank[:20])!r}")
# Save checkpoint
is_best = val_loss < best_val_loss
if is_best:
best_val_loss = val_loss
self.save_checkpoint(epoch, val_loss, val_cer, is_best)
# Early stopping
if self.early_stopping(val_loss):
print(f"\nEarly stopping triggered at epoch {epoch}")
break
print("\n" + "=" * 70)
print("Training Complete!")
print(f"Best validation loss: {best_val_loss:.4f}")
print("=" * 70)
# Save final training history
self.save_history()
def save_checkpoint(self, epoch, val_loss, val_cer, is_best=False):
"""Save model checkpoint"""
checkpoint = {
'epoch': epoch,
'model_state_dict': self.model.state_dict(),
'optimizer_state_dict': self.optimizer.state_dict(),
'scheduler_state_dict': self.scheduler.state_dict(),
'warmup_scheduler_state_dict': self.warmup_scheduler.state_dict(),
'val_loss': val_loss,
'val_cer': val_cer,
'char_to_idx': self.train_dataset.char_to_idx,
'idx_to_char': self.train_dataset.idx_to_char,
'config': self.config,
'history': self.history
}
# Save latest checkpoint
checkpoint_path = self.checkpoint_dir / 'latest_checkpoint.pth'
torch.save(checkpoint, checkpoint_path)
# Save best checkpoint
if is_best:
best_path = self.checkpoint_dir / 'best_model.pth'
torch.save(checkpoint, best_path)
print(f" β Best model saved (Val Loss: {val_loss:.4f}, CER: {val_cer:.2f}%)")
# Save epoch checkpoint (history omitted to save disk space β it's in latest_checkpoint.pth)
if epoch % self.config.get('save_freq', 10) == 0:
epoch_path = self.checkpoint_dir / f'checkpoint_epoch_{epoch}.pth'
epoch_ckpt = {k: v for k, v in checkpoint.items() if k != 'history'}
torch.save(epoch_ckpt, epoch_path)
def save_history(self):
"""Save training history"""
history_path = self.log_dir / 'training_history.json'
with open(history_path, 'w') as f:
json.dump(self.history, f, indent=2)
print(f"\nβ Training history saved to {history_path}")
def main():
"""Main training function"""
# Configuration
config = {
# Data
'train_data_dir': 'data/train',
'train_annotations': 'data/train_annotations.json',
'val_data_dir': 'data/val',
'val_annotations': 'data/val_annotations.json',
'form_type': 'all', # 'all', 'form1a', 'form2a', 'form3a', 'form90'
# Model
'model_type': 'standard', # 'standard', 'ensemble', 'lightweight'
'img_height': 64,
'img_width': 512,
'hidden_size': 128,
'num_lstm_layers': 1,
# Training
'batch_size': 32,
'epochs': 100,
'learning_rate': 0.0001,
'weight_decay': 1e-4, # FIXED: was 1e-5 β stronger L2 regularisation to reduce overfitting
'num_workers': 0,
'warmup_epochs': 5, # Ramp LR gradually for first 5 epochs
# Scheduling & Early Stopping
'lr_patience': 5, # FIXED: was 3 β give model more time before halving LR
'early_stopping_patience': 20, # FIXED: was 10 β more patience during zoom training
'min_delta': 0.001,
# Saving
'checkpoint_dir': 'checkpoints',
'log_dir': 'logs',
'save_freq': 10,
}
# Initialize trainer
trainer = CRNNTrainer(config)
# Start training
trainer.train()
if __name__ == "__main__":
main() |