Skip to main content

No project description provided

Project description

Fabric is the fast and lightweight way to scale PyTorch models without boilerplate


WebsiteDocsGetting startedFAQHelpDiscord

PyPI - Python Version PyPI Status PyPI - Downloads Conda

Lightning Fabric: Expert control.

Run on any device at any scale with expert-level control over PyTorch training loop and scaling strategy. You can even write your own Trainer.

Fabric is designed for the most complex models like foundation model scaling, LLMs, diffusion, transformers, reinforcement learning, active learning. Of any size.

What to change Resulting Fabric Code (copy me!)
+ import lightning as L
  import torch; import torchvision as tv

  dataset = tv.datasets.CIFAR10("data", download=True,
                                train=True,
                                transform=tv.transforms.ToTensor())

+ fabric = L.Fabric()
+ fabric.launch()

  model = tv.models.resnet18()
  optimizer = torch.optim.SGD(model.parameters(), lr=0.001)
- device = "cuda" if torch.cuda.is_available() else "cpu"
- model.to(device)
+ model, optimizer = fabric.setup(model, optimizer)

  dataloader = torch.utils.data.DataLoader(dataset, batch_size=8)
+ dataloader = fabric.setup_dataloaders(dataloader)

  model.train()
  num_epochs = 10
  for epoch in range(num_epochs):
      for batch in dataloader:
          inputs, labels = batch
-         inputs, labels = inputs.to(device), labels.to(device)
          optimizer.zero_grad()
          outputs = model(inputs)
          loss = torch.nn.functional.cross_entropy(outputs, labels)
-         loss.backward()
+         fabric.backward(loss)
          optimizer.step()
import lightning as L
import torch; import torchvision as tv

dataset = tv.datasets.CIFAR10("data", download=True,
                              train=True,
                              transform=tv.transforms.ToTensor())

fabric = L.Fabric()
fabric.launch()

model = tv.models.resnet18()
optimizer = torch.optim.SGD(model.parameters(), lr=0.001)
model, optimizer = fabric.setup(model, optimizer)

dataloader = torch.utils.data.DataLoader(dataset, batch_size=8)
dataloader = fabric.setup_dataloaders(dataloader)

model.train()
num_epochs = 10
for epoch in range(num_epochs):
    for batch in dataloader:
        inputs, labels = batch
        optimizer.zero_grad()
        outputs = model(inputs)
        loss = torch.nn.functional.cross_entropy(outputs, labels)
        fabric.backward(loss)
        optimizer.step()

Key features

Easily switch from running on CPU to GPU (Apple Silicon, CUDA, …), TPU, multi-GPU or even multi-node training
# Use your available hardware
# no code changes needed
fabric = Fabric()

# Run on GPUs (CUDA or MPS)
fabric = Fabric(accelerator="gpu")

# 8 GPUs
fabric = Fabric(accelerator="gpu", devices=8)

# 256 GPUs, multi-node
fabric = Fabric(accelerator="gpu", devices=8, num_nodes=32)

# Run on TPUs
fabric = Fabric(accelerator="tpu")
Use state-of-the-art distributed training strategies (DDP, FSDP, DeepSpeed) and mixed precision out of the box
# Use state-of-the-art distributed training techniques
fabric = Fabric(strategy="ddp")
fabric = Fabric(strategy="deepspeed")
fabric = Fabric(strategy="fsdp")

# Switch the precision
fabric = Fabric(precision="16-mixed")
fabric = Fabric(precision="64")
All the device logic boilerplate is handled for you
  # no more of this!
- model.to(device)
- batch.to(device)
Build your own custom Trainer using Fabric primitives for training checkpointing, logging, and more
import lightning as L


class MyCustomTrainer:
    def __init__(self, accelerator="auto", strategy="auto", devices="auto", precision="32-true"):
        self.fabric = L.Fabric(accelerator=accelerator, strategy=strategy, devices=devices, precision=precision)

    def fit(self, model, optimizer, dataloader, max_epochs):
        self.fabric.launch()

        model, optimizer = self.fabric.setup(model, optimizer)
        dataloader = self.fabric.setup_dataloaders(dataloader)
        model.train()

        for epoch in range(max_epochs):
            for batch in dataloader:
                input, target = batch
                optimizer.zero_grad()
                output = model(input)
                loss = loss_fn(output, target)
                self.fabric.backward(loss)
                optimizer.step()

You can find a more extensive example in our examples



Continuous Integration

Lightning is rigorously tested across multiple CPUs and GPUs and against major Python and PyTorch versions.

*Codecov is > 90%+ but build delays may show less
Current build statuses
System / PyTorch ver. 1.12 1.13 2.0 2.1
Linux py3.9 [GPUs] Build Status
Linux (multiple Python versions) Test Fabric Test Fabric Test Fabric Test Fabric
OSX (multiple Python versions) Test Fabric Test Fabric Test Fabric Test Fabric
Windows (multiple Python versions) Test Fabric Test Fabric Test Fabric Test Fabric

Getting started

Install Lightning

Prerequisites

TIP: We strongly recommend creating a virtual environment first. Don’t know what this is? Follow our beginner guide here.

  • Python 3.8.x or later (3.8.x, 3.9.x, 3.10.x, ...)
pip install -U lightning

Convert your PyTorch to Fabric

  1. Create the Fabric object at the beginning of your training code.

    import Lightning as L
    
    fabric = L.Fabric()
    
  2. Call setup() on each model and optimizer pair and setup_dataloaders() on all your data loaders.

    model, optimizer = fabric.setup(model, optimizer)
    dataloader = fabric.setup_dataloaders(dataloader)
    
  3. Remove all .to and .cuda calls -> Fabric will take care of it.

    - model.to(device)
    - batch.to(device)
    
  4. Replace loss.backward() by fabric.backward(loss).

    - loss.backward()
    + fabric.backward(loss)
    
  5. Run the script from the terminal with

    lightning run model path/to/train.py
    

or use the launch() method in a notebook. Learn more about launching distributed training.


FAQ

When to use Fabric?

  • Minimum code changes- You want to scale your PyTorch model to use multi-GPU or use advanced strategies like DeepSpeed without having to refactor. You don’t care about structuring your code- you just want to scale it as fast as possible.
  • Maximum control- Write your own training and/or inference logic down to the individual optimizer calls. You aren’t forced to conform to a standardized epoch-based training loop like the one in Lightning Trainer. You can do flexible iteration based training, meta-learning, cross-validation and other types of optimization algorithms without digging into framework internals. This also makes it super easy to adopt Fabric in existing PyTorch projects to speed-up and scale your models without the compromise on large refactors. Just remember: With great power comes a great responsibility.
  • Maximum flexibility- You want to have full control over your entire training- in Fabric all features are opt-in, and it provides you with a tool box of primitives so you can build your own Trainer.

When to use the Lightning Trainer?

  • You want to have all the engineering boilerplate handled for you - dozens of features like checkpointing, logging and early stopping out of the box. Less hassle, less error prone, easy to try different techniques and features.
  • You want to have good defaults chosen for you - so you can have a better starting point.
  • You want your code to be modular, readable and well structured - easy to share between projects and with collaborators.

Can I use Fabric with my LightningModule or Lightning Callback?

Yes :) Fabric works with PyTorch LightningModules and Callbacks, so you can choose how to structure your code and reuse existing models and callbacks as you wish. Read more here.


Examples


Asking for help

If you have any questions please:

  1. Read the docs.
  2. Ask a question in our forum.
  3. Join our discord community.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lightning_fabric-2.6.5.tar.gz (202.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lightning_fabric-2.6.5-py3-none-any.whl (257.1 kB view details)

Uploaded Python 3

File details

Details for the file lightning_fabric-2.6.5.tar.gz.

File metadata

  • Download URL: lightning_fabric-2.6.5.tar.gz
  • Upload date:
  • Size: 202.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lightning_fabric-2.6.5.tar.gz
Algorithm Hash digest
SHA256 ab755257d4f928cdd3d25409d25705f1b767952efa2d4e62b5fc2158b1a6d555
MD5 ac2a4ce230ab0b1800dd24a695c67d1c
BLAKE2b-256 519a6d1e87b7c892bcf397b35f123d6fc25069fe3e8cf75e054be1786f422ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightning_fabric-2.6.5.tar.gz:

Publisher: release-pkg.yml on Lightning-AI/pytorch-lightning

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lightning_fabric-2.6.5-py3-none-any.whl.

File metadata

File hashes

Hashes for lightning_fabric-2.6.5-py3-none-any.whl
Algorithm Hash digest
SHA256 00168f50a46f1a550f20c787d7bd0264ddeebfd4a7e9343af70c031668f30a12
MD5 64e18d14bd7f49f3da5842d61075bc51
BLAKE2b-256 8ad10e6049cfefa335a21daa1f2ffeb14cd2c3017bb5909fed1ae7258ae48b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightning_fabric-2.6.5-py3-none-any.whl:

Publisher: release-pkg.yml on Lightning-AI/pytorch-lightning

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page