Skip to main content

Adaptive Input/Output Normalization for deep neural networks. Enables stable training of extremely deep networks through adaptive residual scaling (Alpha) by Babayev's Theory

Project description

AION-Torch: Adaptive Input/Output Normalization

PyPI version PyPI downloads License: MIT Python 3.10+

AION-Torch is a PyTorch library that implements Adaptive Input/Output Normalization (AION), a method for stabilizing deep neural networks. AION automatically adjusts residual connections to prevent vanishing and exploding gradients, enabling stable training of very deep networks with minimal configuration.


🚀 Features

  • Adaptive Residual Scaling: Automatically adjusts residual connection strength based on signal statistics
  • Stable Deep Training: Prevents vanishing/exploding gradients even in networks with 1000+ layers
  • Drop-in Replacement: Works with any architecture using residual connections (Transformers, ResNets, etc.)
  • Distributed Ready: Fully supports DDP with synchronized statistics across all GPUs
  • Zero Config: Sensible defaults work out-of-the-box, no hyperparameter tuning needed

📦 Installation

From PyPI

pip install aion-torch

⚡ Quick Start

1. The AionBlock (Recommended)

The easiest way to use AION is to replace your standard residual blocks with AionBlock. It implements the Pre-LayerNorm pattern augmented with AION scaling.

import torch
import torch.nn as nn
from aion_torch import AionBlock

# Define your transformation layer (e.g., Attention or MLP)
mlp_layer = nn.Sequential(
    nn.Linear(512, 2048),
    nn.GELU(),
    nn.Linear(2048, 512)
)

# Wrap it in an AionBlock
# Structure: x + alpha * layer(norm(x))
block = AionBlock(layer=mlp_layer, dim=512)

# Forward pass
x = torch.randn(8, 128, 512)
output = block(x)

2. Low-Level AionResidual

For custom architectures, you can use the AionResidual adapter directly.

from aion_torch import AionResidual

class MyLayer(nn.Module):
    def __init__(self, dim):
        super().__init__()
        self.norm = nn.LayerNorm(dim)
        self.ffn = nn.Linear(dim, dim)
        # Initialize AION adapter
        self.aion = AionResidual(alpha0=0.1, beta=0.05)

    def forward(self, x):
        residual = x
        x_norm = self.norm(x)
        y = self.ffn(x_norm)

        # Apply adaptive residual connection
        # Formula: x + alpha * y, ratio uses x_norm per Definition 3.1
        return self.aion(residual, y, x_norm=x_norm)

🧠 How It Works

AION adaptively scales residual connections using a simple but effective formula:

$$ \alpha = \frac{\alpha_0}{1 + \beta \cdot \text{ratio}} $$

where ratio measures the relative magnitude of the transformation output compared to the input. When the network becomes unstable (high ratio), AION automatically reduces the scaling factor. When stable (low ratio), it uses a stronger connection.

Key insight: By maintaining balanced signal propagation, AION ensures gradients flow stably through arbitrarily deep networks without exponential growth or decay.

AION as the General Form

Mathematically, other stabilization methods can be seen as special cases or approximations of the AION formula where adaptivity ($\beta$) is turned off:

Method AION Equivalent Parameters Behavior
DeepNorm $\beta=0, \alpha_0 = \frac{1}{\sqrt{2L}}$ Fixed static scaling based on depth
Pre-LN $\beta=0, \alpha_0 = 1$ No scaling (identity)
ReZero $\beta=0, \alpha_0 = \text{learnable}$ Approximates ReZero (learnable static scalar)
AION $\beta > 0$ Dynamic adaptation based on signal energy

AION generalizes these approaches by adding the control term ($1 + \beta \cdot \text{ratio}$), allowing it to react to instability in real-time rather than relying on static assumptions.

📚 Documentation

For the theoretical foundation and mathematical proofs, see the following documents:

These are more general math papers that inspired the ideas, but are not required to use the library:

🤝 Contributing

Contributions are welcome! Please read our Contributing Guide (coming soon) and check out the issues.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.


Built with ❤️ for the ML 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

aion_torch-1.0.1.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

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

aion_torch-1.0.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file aion_torch-1.0.1.tar.gz.

File metadata

  • Download URL: aion_torch-1.0.1.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for aion_torch-1.0.1.tar.gz
Algorithm Hash digest
SHA256 3285147899cef2efd59f4d46156a2c8e182426230790eb85ccd051218c8fa51a
MD5 302631dc60b07ef664fad5ef25831243
BLAKE2b-256 a7e0b54ded4cc2f2de34c6a237d652a44175599fa78cd1d90e2f0e77523b1a31

See more details on using hashes here.

File details

Details for the file aion_torch-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: aion_torch-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for aion_torch-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 402244d186d9b30cd57191cd5c9d97926dfb4bdf64f13f668046b25f5897ccd1
MD5 c6151984a48a8ff44a69d5e142fb04cd
BLAKE2b-256 b763a6f31f1923f713bb6109cb734e3758c8c13fc66ef1480193fa3b360bcfb3

See more details on using hashes here.

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