Claude Code for PyTorch Lightning: Scalable Model Training — Claude Skills 360 Blog
Blog / AI / Claude Code for PyTorch Lightning: Scalable Model Training
AI

Claude Code for PyTorch Lightning: Scalable Model Training

Published: October 4, 2027
Read time: 5 min read
By: Claude Skills 360

PyTorch Lightning eliminates boilerplate from PyTorch training. pip install lightning. from lightning import LightningModule, Trainer. class Model(LightningModule):\n def forward(self, x): return self.net(x)\n def training_step(self, batch, batch_idx):\n x, y = batch; loss = F.cross_entropy(self(x), y)\n self.log("train_loss", loss); return loss\n def configure_optimizers(self):\n return torch.optim.AdamW(self.parameters(), lr=1e-3). Run: Trainer(max_epochs=10, accelerator="gpu", devices=1).fit(model, train_dl). Trainer(accelerator="gpu", devices=4, strategy="ddp") for 4-GPU DDP. strategy="fsdp" for FSDP. precision="16-mixed" or "bf16-mixed". LightningDataModule: class Data(LightningDataModule):\n def setup(self, stage):\n self.train_ds, self.val_ds = ...\n def train_dataloader(self): return DataLoader(self.train_ds, batch_size=32, num_workers=4)\n def val_dataloader(self): return DataLoader(self.val_ds, batch_size=64). Logging: self.log_dict({"val_acc": acc, "val_loss": loss}, prog_bar=True). Callbacks: ModelCheckpoint(monitor="val_loss", mode="min", save_top_k=3), EarlyStopping(monitor="val_loss", patience=5), LearningRateMonitor(). LR scheduler: return {"optimizer": opt, "lr_scheduler": {"scheduler": scheduler, "interval": "step", "monitor": "val_loss"}}. Lightning Fabric: fabric = Fabric(accelerator="gpu", devices=2, precision="bf16-mixed"), fabric.launch(), model, optimizer = fabric.setup(model, optimizer). loss.backward()fabric.backward(loss). LightningCLI: LightningCLI(Model, Data) reads --config config.yaml. self.log("hp_metric", metric, on_epoch=True) for hyperparam logging. trainer.test(model, dataloaders=test_dl). Claude Code generates Lightning modules, data modules, training scripts, callback configs, and multi-GPU distributed training setups.

CLAUDE.md for PyTorch Lightning

## Lightning Stack
- Version: lightning >= 2.3 (unified package — includes both pytorch-lightning and Fabric)
- Module: LightningModule — forward, training_step, validation_step, configure_optimizers
- Data: LightningDataModule — prepare_data, setup(stage), train/val/test_dataloader
- Trainer: Trainer(accelerator, devices, strategy, precision, max_epochs, callbacks)
- Strategies: ddp (default multi-GPU), fsdp (large models), deepspeed (ZeRO)
- Precision: "16-mixed", "bf16-mixed", "32-true" — passed to Trainer
- Log: self.log(key, value, on_step, on_epoch, prog_bar, sync_dist)
- Fabric: low-level — fabric.setup(model,opt) → fabric.backward(loss)

Lightning Training Pipeline

# train/lightning_train.py — full LightningModule with DataModule and callbacks
from __future__ import annotations
from typing import Any

import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.utils.data import DataLoader, TensorDataset, random_split

import lightning as L
from lightning.pytorch.callbacks import (
    EarlyStopping,
    LearningRateMonitor,
    ModelCheckpoint,
    RichProgressBar,
)
from lightning.pytorch.loggers import TensorBoardLogger, WandbLogger


# ── 1. Model (LightningModule) ─────────────────────────────────────────────────

class ChurnClassifier(L.LightningModule):
    """Churn prediction classifier — self-contained with optimizer config."""

    def __init__(
        self,
        input_dim:      int   = 10,
        hidden_dim:     int   = 128,
        dropout:        float = 0.2,
        lr:             float = 1e-3,
        weight_decay:   float = 1e-4,
        warmup_steps:   int   = 100,
    ):
        super().__init__()
        self.save_hyperparameters()   # Saves all __init__ args to self.hparams

        self.net = nn.Sequential(
            nn.Linear(input_dim, hidden_dim),
            nn.BatchNorm1d(hidden_dim),
            nn.GELU(),
            nn.Dropout(dropout),
            nn.Linear(hidden_dim, hidden_dim),
            nn.BatchNorm1d(hidden_dim),
            nn.GELU(),
            nn.Dropout(dropout),
            nn.Linear(hidden_dim, 2),
        )
        self.train_acc = L.pytorch.metrics.Accuracy(task="binary")
        self.val_acc   = L.pytorch.metrics.Accuracy(task="binary")

    def forward(self, x: torch.Tensor) -> torch.Tensor:
        return self.net(x)

    def _shared_step(self, batch: tuple, stage: str) -> torch.Tensor:
        x, y    = batch
        logits  = self(x)
        loss    = F.cross_entropy(logits, y)
        preds   = logits.argmax(dim=-1)

        acc_metric = self.train_acc if stage == "train" else self.val_acc
        acc_metric(preds, y)

        self.log(f"{stage}_loss",  loss,       on_step=(stage=="train"), on_epoch=True, prog_bar=True)
        self.log(f"{stage}_acc",   acc_metric, on_step=False,            on_epoch=True, prog_bar=True)
        return loss

    def training_step(self, batch: tuple, batch_idx: int) -> torch.Tensor:
        return self._shared_step(batch, "train")

    def validation_step(self, batch: tuple, batch_idx: int) -> None:
        self._shared_step(batch, "val")

    def test_step(self, batch: tuple, batch_idx: int) -> None:
        self._shared_step(batch, "test")

    def predict_step(self, batch: tuple, batch_idx: int) -> torch.Tensor:
        x = batch[0] if isinstance(batch, (list, tuple)) else batch
        return torch.softmax(self(x), dim=-1)[:, 1]   # Probability of class 1

    def configure_optimizers(self) -> dict[str, Any]:
        optimizer = torch.optim.AdamW(
            self.parameters(),
            lr=self.hparams.lr,
            weight_decay=self.hparams.weight_decay,
        )
        # Cosine annealing with linear warmup
        def lr_lambda(current_step):
            if current_step < self.hparams.warmup_steps:
                return float(current_step) / float(max(1, self.hparams.warmup_steps))
            progress = float(current_step - self.hparams.warmup_steps) / float(
                max(1, self.trainer.estimated_stepping_batches - self.hparams.warmup_steps)
            )
            return max(0.0, 0.5 * (1.0 + torch.cos(torch.tensor(progress * 3.14159)).item()))

        scheduler = torch.optim.lr_scheduler.LambdaLR(optimizer, lr_lambda)
        return {
            "optimizer":    optimizer,
            "lr_scheduler": {"scheduler": scheduler, "interval": "step"},
        }


# ── 2. Data (LightningDataModule) ─────────────────────────────────────────────

class ChurnDataModule(L.LightningDataModule):
    """Churn prediction data module — handles splitting and loading."""

    def __init__(
        self,
        data_path:   str   = "data/train.pt",
        batch_size:  int   = 256,
        val_split:   float = 0.15,
        num_workers: int   = 4,
        pin_memory:  bool  = True,
    ):
        super().__init__()
        self.save_hyperparameters()
        self.train_ds = None
        self.val_ds   = None
        self.test_ds  = None

    def prepare_data(self) -> None:
        """Called on rank 0 only — use for downloads or one-time processing."""
        pass

    def setup(self, stage: str | None = None) -> None:
        """Called on every device — use for data loading and splitting."""
        import numpy as np

        # Synthetic data — replace with torch.load(self.hparams.data_path)
        rng      = np.random.default_rng(42)
        n        = 10000
        X        = torch.tensor(rng.standard_normal((n, 10)), dtype=torch.float32)
        y        = torch.tensor(rng.integers(0, 2, n), dtype=torch.long)
        full_ds  = TensorDataset(X, y)

        n_val   = int(len(full_ds) * self.hparams.val_split)
        n_train = len(full_ds) - n_val
        self.train_ds, self.val_ds = random_split(
            full_ds, [n_train, n_val],
            generator=torch.Generator().manual_seed(42),
        )
        if stage in ("test", None):
            self.test_ds = self.val_ds  # Use val as test for demo

    def _make_dl(self, ds, shuffle: bool) -> DataLoader:
        return DataLoader(
            ds,
            batch_size=self.hparams.batch_size,
            shuffle=shuffle,
            num_workers=self.hparams.num_workers,
            pin_memory=self.hparams.pin_memory,
            persistent_workers=self.hparams.num_workers > 0,
        )

    def train_dataloader(self) -> DataLoader:
        return self._make_dl(self.train_ds, shuffle=True)

    def val_dataloader(self) -> DataLoader:
        return self._make_dl(self.val_ds, shuffle=False)

    def test_dataloader(self) -> DataLoader:
        return self._make_dl(self.test_ds, shuffle=False)


# ── 3. Training script ────────────────────────────────────────────────────────

def train(
    max_epochs:      int   = 50,
    accelerator:     str   = "auto",
    devices:         int   = 1,
    strategy:        str   = "auto",     # "ddp" for multi-GPU
    precision:       str   = "bf16-mixed",
    use_wandb:       bool  = False,
    fast_dev_run:    bool  = False,
) -> L.Trainer:
    """Train the churn classifier with full callback and logging setup."""

    # Loggers
    loggers = [TensorBoardLogger("logs/tb", name="churn")]
    if use_wandb:
        loggers.append(WandbLogger(project="churn-lightning", log_model="all"))

    # Callbacks
    callbacks = [
        ModelCheckpoint(
            dirpath="checkpoints/churn",
            filename="{epoch:02d}-{val_loss:.4f}",
            monitor="val_loss",
            mode="min",
            save_top_k=3,
            save_last=True,
        ),
        EarlyStopping(
            monitor="val_loss",
            patience=8,
            mode="min",
            verbose=True,
        ),
        LearningRateMonitor(logging_interval="step"),
        RichProgressBar(),
    ]

    trainer = L.Trainer(
        max_epochs=max_epochs,
        accelerator=accelerator,
        devices=devices,
        strategy=strategy,
        precision=precision,
        gradient_clip_val=1.0,
        accumulate_grad_batches=2,
        log_every_n_steps=10,
        val_check_interval=0.25,
        logger=loggers,
        callbacks=callbacks,
        fast_dev_run=fast_dev_run,
        deterministic=True,
    )

    model   = ChurnClassifier()
    dm      = ChurnDataModule()

    trainer.fit(model, datamodule=dm)
    trainer.test(model, datamodule=dm)

    print(f"Best checkpoint: {callbacks[0].best_model_path}")
    return trainer


# ── 4. Inference ──────────────────────────────────────────────────────────────

def load_and_predict(checkpoint_path: str, X: torch.Tensor) -> torch.Tensor:
    """Load from checkpoint and run prediction."""
    model = ChurnClassifier.load_from_checkpoint(checkpoint_path)
    model.eval()
    trainer = L.Trainer(accelerator="auto", devices=1, logger=False, enable_checkpointing=False)
    dl = DataLoader(TensorDataset(X), batch_size=512)
    predictions = trainer.predict(model, dl)
    return torch.cat(predictions)


if __name__ == "__main__":
    train(max_epochs=5, fast_dev_run=False)

For the raw PyTorch + custom training loop alternative when needing full control over gradient accumulation timing, custom loss weighting between multiple task heads, or non-standard optimization algorithms not supported by Lightning’s abstraction — writing the loop manually avoids the abstraction layer while Lightning’s Trainer eliminates the 200+ lines of boilerplate needed for DDP, mixed precision, gradient clipping, checkpoint management, and early stopping, reducing the surface area for training bugs. For the Keras/TensorFlow alternative when operating in a TensorFlow-first organization with TFX pipelines and TensorFlow Serving deployment infrastructure — Keras compiles to TensorFlow while Lightning is purpose-built for PyTorch with native support for the broader PyTorch ecosystem including DeepSpeed, FSDP, TorchScript, and ONNX export. The Claude Skills 360 bundle includes Lightning skill sets covering LightningModule definitions, DataModule pipelines, multi-GPU DDP/FSDP training, callbacks, LightningCLI configs, and Fabric low-level control. Start with the free tier to try scalable model training generation.

Keep Reading

AI

Claude Code for email.contentmanager: Python Email Content Accessors

Read and write EmailMessage body content with Python's email.contentmanager module and Claude Code — email contentmanager ContentManager for the class that maps content types to get and set handler functions allowing EmailMessage to support get_content and set_content with type-specific behaviour, email contentmanager raw_data_manager for the ContentManager instance that handles raw bytes and str payloads without any conversion, email contentmanager content_manager for the standard ContentManager instance used by email.policy.default that intelligently handles text plain text html multipart and binary content types, email contentmanager get_content_text for the handler that returns the decoded text payload of a text-star message part as a str, email contentmanager get_content_binary for the handler that returns the raw decoded bytes payload of a non-text message part, email contentmanager get_data_manager for the get-handler lookup used by EmailMessage get_content to find the right reader function for the content type, email contentmanager set_content text for the handler that creates and sets a text part correctly choosing charset and transfer encoding, email contentmanager set_content bytes for the handler that creates and sets a binary part with base64 encoding and optional filename Content-Disposition, email contentmanager EmailMessage get_content for the method that reads the message body using the registered content manager handlers, email contentmanager EmailMessage set_content for the method that sets the message body and MIME headers in one call, email contentmanager EmailMessage make_alternative make_mixed make_related for the methods that convert a simple message into a multipart container, email contentmanager EmailMessage add_attachment for the method that attaches a file or bytes to a multipart message, and email contentmanager integration with email.message and email.policy and email.mime and io for building high-level email readers attachment extractors text body accessors HTML readers and policy-aware MIME construction pipelines.

5 min read Feb 12, 2029
AI

Claude Code for email.charset: Python Email Charset Encoding

Control header and body encoding for international email with Python's email.charset module and Claude Code — email charset Charset for the class that wraps a character set name with the encoding rules for header encoding and body encoding describing how to encode text for that charset in email messages, email charset Charset header_encoding for the attribute specifying whether headers using this charset should use QP quoted-printable encoding BASE64 encoding or no encoding, email charset Charset body_encoding for the attribute specifying the Content-Transfer-Encoding to use for message bodies in this charset such as QP or BASE64, email charset Charset output_codec for the attribute giving the Python codec name used to encode the string to bytes for the wire format, email charset Charset input_codec for the attribute giving the Python codec name used to decode incoming bytes to str, email charset Charset get_output_charset for returning the output charset name, email charset Charset header_encode for encoding a header string using the charset's header_encoding method, email charset Charset body_encode for encoding body content using the charset's body_encoding, email charset Charset convert for converting a string from the input_codec to the output_codec, email charset add_charset for registering a new charset with custom encoding rules in the global charset registry, email charset add_alias for adding an alias name that maps to an existing registered charset, email charset add_codec for registering a codec name mapping for use by the charset machinery, and email charset integration with email.message and email.mime and email.policy and email.encoders for building international email senders non-ASCII header encoders Content-Transfer-Encoding selectors charset-aware message constructors and MIME encoding pipelines.

5 min read Feb 11, 2029
AI

Claude Code for email.utils: Python Email Address and Header Utilities

Parse and format RFC 2822 email addresses and dates with Python's email.utils module and Claude Code — email utils parseaddr for splitting a display-name plus angle-bracket address string into a realname and email address tuple, email utils formataddr for combining a realname and address string into a properly quoted RFC 2822 address with angle brackets, email utils getaddresses for parsing a list of raw address header strings each potentially containing multiple comma-separated addresses into a list of realname address tuples, email utils parsedate for parsing an RFC 2822 date string into a nine-tuple compatible with time.mktime, email utils parsedate_tz for parsing an RFC 2822 date string into a ten-tuple that includes the UTC offset timezone in seconds, email utils parsedate_to_datetime for parsing an RFC 2822 date string into an aware datetime object with timezone, email utils formatdate for formatting a POSIX timestamp or the current time as an RFC 2822 date string with optional usegmt and localtime flags, email utils format_datetime for formatting a datetime object as an RFC 2822 date string, email utils make_msgid for generating a globally unique Message-ID string with optional idstring and domain components, email utils decode_rfc2231 for decoding an RFC 2231 encoded parameter value into a tuple of charset language and value, email utils encode_rfc2231 for encoding a string as an RFC 2231 encoded parameter value, email utils collapse_rfc2231_value for collapsing a decoded RFC 2231 tuple to a Unicode string, and email utils integration with email.message and email.headerregistry and datetime and time for building address parsers date formatters message-id generators header extractors and RFC-compliant email construction utilities.

5 min read Feb 10, 2029

Put these ideas into practice

Claude Skills 360 gives you production-ready skills for everything in this article — and 2,350+ more. Start free or go all-in.

Back to Blog

Get 360 skills free