Skip to main content

Ravex

Transparent checkpoint and resume for PyTorch training. Your training script does not change — not one line, not one import.

pip install ravex

Ravex itself is pure Python and installs anywhere. Its default checkpoint engine, Moonclip, ships wheels for Linux x86_64 only — so pip install "ravex[moonclip]" is a Linux thing, and on any other platform Ravex falls back to torch_save on its own. What changed between versions is in CHANGELOG.md.

Drop a ravex.yaml next to your code and run what you always ran:

python train.py

The run now checkpoints itself. If the process dies — spot instance reclaimed, node rebooted, OOM killer, power cut — running the same command again picks up where it stopped: same weights, same optimizer moments, same LR schedule, same RNG state, same position in the dataset.

Why this is not just torch.save

Saving the weights is the easy part. What makes a resumed run continue rather than merely restart from a good place is everything around them:

Restored Why it matters
Model weights and buffers the obvious part
Optimizer state Adam moments; without them the first steps after resume are wrong
LR scheduler resume at the wrong LR and the loss curve visibly kinks
AMP GradScaler its loss scale is tuned state, not a constant
RNG: torch, CUDA, Python, NumPy dropout masks and augmentations replay identically
Dataset position you continue with batch 4001, not batch 1

Ravex's test suite asserts the strong form of this: a run killed at step 20 and resumed produces losses that are bit-identical, step by step, to the run that was never interrupted, and the same final weights.

Two ways to use it

Zero code changes. pip install ravex puts a one-line .pth file in site-packages, which Python executes at interpreter startup. From then on Ravex attaches itself to any training process that has a ravex.yaml.

That line costs about a millisecond and does almost nothing: it reads os and sys, looks for a ravex.yaml above the working directory, and stops there unless it finds one. When it does, it arms a hook that waits for import torch and only then loads the runtime — so a process that never touches PyTorch never pays for anything else, and the hook removes itself once it has fired.

One line, when you would rather be explicit:

import ravex
ravex.activate()

Both do the same thing. The .pth route exists so that a platform can enable checkpointing for code it does not own — and ravex disable removes it for people who would rather it were not there. A later pip install --upgrade puts it back.

Configuration

ravex.yaml, anywhere at or above the working directory:

checkpoint_every: 500        # optimizer steps between checkpoints
backend: moonclip            # moonclip | torch_save
storage:
  type: local                # local | s3 | r2
  path: ./checkpoints
keep_last: 5
max_steps: null              # optional hard stop, see below
sharded_checkpoints: gather  # gather | per_rank, for FSDP — see below

Every option also reads from RAVEX_* environment variables, which win over the file — so a scheduler can override a config committed to the repository:

RAVEX_CHECKPOINT_EVERY=100 RAVEX_STORAGE_TYPE=r2 RAVEX_STORAGE_BUCKET=runs python train.py

Credentials are never read from the config file. Set RAVEX_S3_ACCESS_KEY / RAVEX_S3_SECRET_KEY, or the usual AWS_* pair.

Full reference: docs/configuration.md.

Backends

moonclip (default) — the Moonclip engine: per-tensor delta tracking, so unchanged weights cost zero I/O; zstd compression; background writes; direct S3/R2 sync.

torch_save — one .pt file per checkpoint, written on a background thread. Used automatically when Moonclip is not installed. Correct, just larger and slower.

How it works

Ravex patches five things in PyTorch and nothing in your code:

  • nn.Module.__init__ and .train() — to notice your models
  • Optimizer.__init__ — to attach a step hook to every optimizer
  • DataLoader.__init__ and .__iter__ — to track the dataset position and to find the one moment where a resume can be applied

The step counter advances once per optimizer.step(), so gradient accumulation needs no special handling. Checkpoints are collected at the top of an iteration, never inside one: mid-iteration the LR scheduler has not stepped yet, and a checkpoint taken there resumes with a stale learning rate.

Collection runs on the training thread — it has to, to be consistent with the step that just finished — and copies the state; the write itself happens in the background. What the loop pays for is the copy, not the I/O.

More detail: docs/how-it-works.md.

Safety

Ravex is designed to be un-noticeable when it works and harmless when it does not:

  • every hook is wrapped; if one raises, your call still returns normally
  • if a checkpoint fails, Ravex disables itself and logs it — training continues
  • nothing is ever written to stdout; logs go to log_file, or to stderr at WARNING and above
  • installing the package starts no checkpointing anywhere. The .pth runs in every interpreter, and in one without a ravex.yaml above the working directory — or RAVEX_ENABLED=1 — it installs nothing and returns. Ravex is inert until a project asks for it, which is a weaker promise than "it writes no file" and the one that actually matters
  • it never imports torch to find that out. The runtime loads only once your code has imported PyTorch itself
  • ravex disable removes the autoloader; RAVEX_ENABLED=0 turns it off for a single run

Status and limits

Alpha. Works with plain PyTorch loops, and with anything built on them, since the hooks are on PyTorch itself.

With a framework driving the loop

HuggingFace Trainer and Lightning are covered by their own tests, and the result deserves to be stated precisely rather than as "it works":

  • State restoration is exact. Model, optimizer, LR scheduler and step count all come back. With the per-step randomness removed, a killed run resumes into a loss sequence identical to the uninterrupted one.
  • Replay is not. With shuffling and dropout on, the resumed run continues correctly from the checkpointed state but sees a different draw. Both frameworks iterate the dataloader on their own schedule and consume the global RNG around the loop, so the epoch-start snapshot no longer lines up.

Plain loops, DDP and FSDP are bit-exact with randomness on. This is a framework-interaction limit, not a general one, and it costs you a different shuffle from the resume point onwards — not a wrong model.

Verified: plain loops, gradient accumulation, LR schedulers, AMP loss-scale state, num_workers > 0, DDP, and FSDP. A killed torchrun job resumes on every rank with bit-identical losses, sharded or not, and the checkpoint it leaves behind loads into a plain single-process model afterwards.

Sharded models

With FSDP each rank holds a slice of every parameter, so state_dict() returns a fragment. Two ways to turn that into a checkpoint, picked with sharded_checkpoints:

gather (default) rebuilds the whole state on rank 0, which writes it. The checkpoint is then independent of the topology that produced it — eight GPUs in, one out — and it does not scale: rank 0 has to hold the entire model and optimizer in host memory, and it is the rank that then does the writing.

per_rank has every rank write its own shard into its own store, <storage.path>/rank_<n>. Nothing is gathered, so nothing is bounded by one rank's memory, and on a 1.48B model collecting the state went from 15.6 s to 1.5 s. What you give up is the resharding: those shards are cut for one topology, so the checkpoint resumes at the same world size and starts clean at any other. Needs FSDP2 — under FSDP1 Ravex degrades to gather and says so.

Either way, collecting is a collective: every rank participates, and there is no final checkpoint at exit for a sharded model. Shutdown is where ranks stop being in lockstep, and a collective nobody else joins hangs. Losing the last few steps is bounded; a hang is not. Set checkpoint_every accordingly.

Numbers and the FSDP1 details: docs/configuration.md.

More than one machine

Ranks, directories and collectives all cross machines unchanged. What does not is per_rank on local storage: each machine writes only its own ranks' shards to its own disk, so no machine holds a whole checkpoint. It resumes only if every machine is handed the same ranks again — no launcher promises that — and not at all if a machine is lost. Ravex probes the storage at activation and says which case you are in rather than letting you find out at the first resume.

Two ways out, and they are not equivalent:

  • A bucket (storage.type: s3). Checkpoints leave the machines on their own, and since 0.0.4 a rank that comes up with an empty disk pulls its store back. Before that the remote was push-only — a backup you could not resume from.
  • replicate_every, when there is no bucket and no shared filesystem. Each rank copies its store to a peer on another machine every N checkpoints. Survives losing any one machine, at a cost of at most N checkpoints of progress.

Keeping the data after the run ends is yours unless a remote is configured — and for a sharded model the newest checkpoint is the last periodic one, since there is none at exit.

Known limits today:

  • IterableDataset: no index sampler exists, so the stream position cannot be replayed. Everything else is still restored.
  • Your loop's bounds: a resumed script runs its own for epoch in range(N) again from the top; it has no idea 3000 steps already happened. Set max_steps and Ravex ends the run at the right step regardless of how many times the process restarted.

Under AMP, note that an overflowing gradient makes scaler.step() skip the optimizer. Ravex counts optimizer steps, not loop iterations, so a skipped iteration does not advance the counter — which is the right unit, since nothing about the model changed, but it does mean the step count and the number of batches you fed differ.

The GPU paths — AMP with real fp16 overflow, the CUDA RNG, FSDP1, NCCL — are covered by integration/test_cuda.py, which skips without a GPU. They were last verified on 8× RTX 5060 Ti with torch 2.12/cu130.

Development

pip install -e ".[dev]"
pytest

The unit suite runs in-process. The parts that only exist across a real process boundary — the .pth autoloader, a resume starting from an empty interpreter, torchrun — live in integration/ and need Linux:

docker build -f integration/Dockerfile -t ravex-integration .
docker run --rm ravex-integration

Licence

Apache 2.0. See LICENSE.

Release files for ravex 0.0.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ravex 0.0.4
File Size Uploaded
ravex-0.0.4.tar.gz 126.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ravex 0.0.4
File Interpreter ABI Platform
ravex-0.0.4-py3-none-any.whl Python 3 none any Details

Total release size: 217.0 kB

Release files / ravex-0.0.4.tar.gz

Download URL ravex-0.0.4.tar.gz
Size 126.5 kB
Tags Source
SHA-256 checksum
How to use checksums
c299fd12b6f40f4990d13bd291efb26b13495aa12d22536728bdc8016a863c0e
BLAKE2b-256 checksum
How to use checksums
6d6e1e567f30d959e6ae5f9349ebf5f7228067f4f853cf51fc9d0b3c6d19a9d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release files / ravex-0.0.4-py3-none-any.whl

Download URL ravex-0.0.4-py3-none-any.whl
Size 90.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6db978dc48ec6a1cd8a2e845b326df000249f5fe6fafc94412df949def351b19
BLAKE2b-256 checksum
How to use checksums
62bfd79b3cb4e1fc7a84fe2f323ae94754a75a1bf3db002373e865852d2c3c47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release history Release notifications | RSS feed

0.4.0

5 release files

0.3.0

5 release files

0.2.0

5 release files

0.1.0

5 release files

0.0.5

2 release files

This release

0.0.4 This release

2 release files

0.0.3

2 release files

0.0.2

2 release 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