Skip to main content

RangerLite

PyPI Python Version License DOI PyTorch Version Build Status

A pytorch implementation of the Lookahead optimizer [1] with RAdam [2] as inner optimizer. This combination is inspired by the Ranger optimizer [3]. RangerLite is a lightweight, easy to use and type hinted alternative. The publication on PyPi allows easy installation via pip.

Table of Contents

Installation

The simplest way to install RangerLite is to use pip:

pip install rangerlite

Requirements

RangerLite requires Python 3.10 or later and PyTorch 2.0 or later.

Usage

You can use RangerLite as a drop in pytorch optimizer:

import torch
from rangerlite import RangerLite

model = ...  # your model
optimizer = RangerLite(model.parameters())

A simple example of using RangerLite to find the minimum of the quadratic function (20 steps are not sufficient to get close to the minimum, but you can see the loss decreasing):

import torch
from rangerlite import RangerLite

x = torch.tensor(2.0, requires_grad=True)
# learning rate too high for more complex problems,
# but works for this simple example
optimizer = RangerLite(
    params=[x],
    lr=2e-1,
    lookahead_steps=4,
)

for step in range(20):
    loss = x**2
    optimizer.zero_grad()
    loss.backward()
    optimizer.step()
    print(f"Step {step+1:2d}: x = {x:.4f}, loss = {loss:.4f}, grad = {x.grad:.4f}")

Relation to other Implementations

The RangerLite optimizer is inspired by the original Ranger[3] optimizer, which combines RAdam[2], Lookahead[1] and gradient centralization[4]. RangerLite drops the gradient centralization and provides a lightweight alternative inheriting from PyTorch's RAdam implementation. It can easily be used and integrated into existing PyTorch workflows and provides type hinting for better developer experience.

Why not use the original Lookahead implementation?

The original Lookahead implementation[5] uses composition of optimizers, which can lead to unexpected behavior when setting hyper-parameters for individual parameter groups or frameworks like pytorch-lightning. Saving and loading the state dict is also not guaranteed to result in the same state leading to potential issues with checkpointing.

Development

For development, first clone the repository and than install it as editable package including the development dependencies:

# clone the repository
git clone https://github.com/FLC-QU-hep/ranger-lite.git
cd ranger-lite

# create a virtual environment (you can also use a different tool)
python3 -m venv .venv
source .venv/bin/activate

# install the package and its development dependencies as editable package
pip install -e .
pip install --group dev
pip install --group test

This repository uses pre-commit hooks to ensure consistent code style. To install the pre-commit hooks, run:

pre-commit install

The unit tests can be run with:

pytest

References

  1. Lookahead: https://arxiv.org/abs/1907.08610
  2. RAdam: https://arxiv.org/abs/1908.03265
  3. Ranger: https://github.com/lessw2020/Ranger-Deep-Learning-Optimizer
  4. Gradient Centralization: https://arxiv.org/abs/2004.01461
  5. Original Lookahead implementation: https://github.com/michaelrzhang/lookahead

Download files

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

Source Distribution

rangerlite-1.0.3.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

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

rangerlite-1.0.3-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file rangerlite-1.0.3.tar.gz.

File metadata

  • Download URL: rangerlite-1.0.3.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rangerlite-1.0.3.tar.gz
Algorithm Hash digest
SHA256 fb0f842b99763bb735dd2acba8eef2cbc0bd0a9c31f286f1718911caa4831ce5
MD5 3d7181cda98667263e5652e2080da785
BLAKE2b-256 192fbcebc9d83f3f043ebb59b7c610f3a5a09955cfa018fae6352ba2abb4511b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rangerlite-1.0.3.tar.gz:

Publisher: publish.yml on FLC-QU-hep/ranger-lite

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

File details

Details for the file rangerlite-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: rangerlite-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rangerlite-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 991d0330588d13a7f757afbf241ea71cf7845a5720e55aacb9fa757608bf40ed
MD5 297f6cb4fd5d6ddc165f5e2417406d9d
BLAKE2b-256 f68e00546a6c473c938cf0a1faeec232965cabb4f35cd3b225bb421c498eb4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rangerlite-1.0.3-py3-none-any.whl:

Publisher: publish.yml on FLC-QU-hep/ranger-lite

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

Release history Release notifications | RSS feed

This release

1.0.3 This release

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page