Reversible-Flow-Adaptation
Collection
Test-Time Adaptation for robotic control using Rectified Flows. • 8 items • Updated • 1
This repository contains the pre-trained neural network weights for the Reversible Flow Adaptation architecture, applied to the Quadruped environment using the reversible_flow policy.
These checkpoints represent the fully-converged policy at the final epoch (Epoch 600) across 3 independent random seeds (seed_1, seed_2, seed_42).
The policy consists of a dual-objective architecture:
The checkpoints are saved in the highly-optimized JAX / Orbax format.
import orbax.checkpoint as ocp
# Example: Loading seed 42
checkpoint_path = "seed_42"
mngr = ocp.CheckpointManager(os.path.abspath(checkpoint_path))
# Load the parameters
restored = mngr.restore(mngr.latest_step())
print(restored.keys())