Analyze neural network training stability using Lyapunov exponents and perturbation-based trajectory analysis
Project description
deep-lyapunov
Analyze neural network training stability using Lyapunov exponents and perturbation-based trajectory analysis.
What is deep-lyapunov?
deep-lyapunov helps you understand how stable your neural network training is. It answers questions like:
- Do small changes in initialization lead to similar or different final models?
- Is my training process reproducible?
- Which architectures are more stable to train?
It uses concepts from dynamical systems theory—specifically Lyapunov exponents—to quantify training stability.
Key Concepts
| Metric | What It Tells You |
|---|---|
| Convergence Ratio | Do weight trajectories come together (< 1) or spread apart (> 1)? |
| Lyapunov Exponent | Rate of trajectory separation. Negative = stable, Positive = chaotic |
| Effective Dimensionality | How many degrees of freedom in your weight dynamics? |
Installation
pip install deep-lyapunov
For development:
pip install deep-lyapunov[dev]
Quick Start
import torch
import torch.nn as nn
from deep_lyapunov import StabilityAnalyzer
# Your model (any PyTorch nn.Module)
model = nn.Sequential(
nn.Linear(784, 128),
nn.ReLU(),
nn.Linear(128, 10)
)
# Create analyzer
analyzer = StabilityAnalyzer(
model=model,
perturbation_scale=0.01, # 1% perturbation
n_trajectories=5, # Compare 5 perturbed copies
)
# Analyze stability during training
results = analyzer.analyze(
train_fn=your_training_function,
train_loader=train_loader,
n_epochs=10,
)
# View results
print(f"Convergence Ratio: {results.convergence_ratio:.2f}x")
print(f"Lyapunov Exponent: {results.lyapunov:.4f}")
print(f"Training is: {results.behavior}") # 'convergent' or 'divergent'
# Generate visualizations
results.plot_trajectories()
results.save_report("stability_report/")
Manual Recording Mode
If you have a custom training loop:
analyzer = StabilityAnalyzer(model)
analyzer.start_recording()
for epoch in range(10):
train_one_epoch(model, train_loader)
analyzer.record_checkpoint()
results = analyzer.compute_metrics()
Understanding Results
Convergent Training (ratio < 1.0)
- Different initializations converge to similar solutions
- Training is reproducible
- Good for production deployment
Divergent Training (ratio > 1.0)
- Small differences amplify during training
- Multiple distinct solutions exist
- Good for ensemble diversity
API Reference
StabilityAnalyzer
StabilityAnalyzer(
model: nn.Module,
perturbation_scale: float = 0.01,
n_trajectories: int = 5,
n_pca_components: int = 10,
track_gradients: bool = False,
device: str = "auto",
)
AnalysisResults
results.convergence_ratio # float: final_spread / initial_spread
results.lyapunov # float: average Lyapunov exponent
results.behavior # str: 'convergent' or 'divergent'
results.spread_evolution # np.ndarray: spread at each epoch
results.pca_trajectories # np.ndarray: trajectories in PCA space
results.plot_trajectories() # Visualize weight trajectories
results.plot_convergence() # Plot spread evolution
results.save_report(path) # Generate full report
results.to_dict() # Export as dictionary
Examples
See the examples/ directory for:
basic_usage.py- Simple stability analysiscustom_training.py- Integration with custom training loopscomparing_architectures.py- Compare stability across architectures
Theory
The analysis is based on perturbation-based trajectory analysis:
- Start with a base model initialization
- Create N copies with small Gaussian perturbations (scale ε)
- Train all copies independently on the same data
- Track how the weight trajectories evolve
- Compute stability metrics from trajectory spread
The Lyapunov exponent λ is computed as:
λ = (1/T) × log(final_spread / initial_spread)
- λ < 0: Trajectories converge (stable)
- λ > 0: Trajectories diverge (chaotic/sensitive)
- λ ≈ 0: Neutral stability
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
Citation
If you use deep-lyapunov in your research, please cite:
@software{deep_lyapunov,
title = {deep-lyapunov: Neural Network Training Stability Analysis},
author = {Sampathkumar, Rajesh},
year = {2025},
url = {https://github.com/aiexplorations/deep-lyapunov}
}
License
MIT License - see LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file deep_lyapunov-0.1.1.tar.gz.
File metadata
- Download URL: deep_lyapunov-0.1.1.tar.gz
- Upload date:
- Size: 37.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48b9dd515bc78a216fabe71b72152fe0ce75044469a244fa72d8e96c55c33863
|
|
| MD5 |
8ed0643a0111d9cb27158191c4677026
|
|
| BLAKE2b-256 |
43bba6210b2450c7a7029de9971bebf5666471449f504a1e56322eb0f4581f48
|
File details
Details for the file deep_lyapunov-0.1.1-py3-none-any.whl.
File metadata
- Download URL: deep_lyapunov-0.1.1-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ec32b3ac556ff4f588f1d79583a43c0104d1ccd9504985f5217f6dc00ee2494
|
|
| MD5 |
499f2aa7edb29dcda542694e235d4f53
|
|
| BLAKE2b-256 |
90edf7cc8cae923e9b347a2cf063efeffb2ca7b2844d2f7710259279e702b38a
|