File size: 1,761 Bytes
8de53df
 
 
 
 
 
 
 
28d1654
8de53df
 
abc6e52
8de53df
28d1654
8de53df
 
 
 
7f8c004
8de53df
 
4e0c94b
8de53df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
license: mit
library_name: pytorch
tags:
  - jepa
  - world-models
  - model-based-rl
  - planning
  - arxiv:2607.04978
---

# Qantara headline checkpoints

Released checkpoints for **Qantara**, a compact (~21M-param) JEPA world model for
goal-conditioned planning from pixels and actions, and for our **LeWM** reproduction
baseline. These reproduce the LeWM-suite headline numbers (Table 1) from the ICML 2026
workshop paper.

- **Project page:** https://corl-team.github.io/qantara
- **Code:** https://github.com/corl-team/qantara
- **Paper:** https://arxiv.org/abs/2607.04978
- **Thread:** https://x.com/rusrakhimov/status/2074847486288806306

## Files

24 checkpoints = 2 methods × 4 environments × 3 training seeds.

| Pattern | Method |
|---|---|
| `qantara-<env>-s<seed>.ckpt` | Qantara (γ=1, λ_z=3, nulldrop=0) headline |
| `lewm-<env>-s<seed>.ckpt`    | LeWM reproduction baseline |

`env ∈ {pusht, tworoom, cube, reacher}`, `seed ∈ {11, 22, 33}`.

## Loading

Each file is a full model object (`torch.save` of a `jepa.JEPA`). Clone the code repo,
then:

```python
import torch
model = torch.load("qantara-pusht-s11.ckpt", map_location="cpu", weights_only=False)
```

The repository's `eval.py` consumes these directly. See the repo README for the full
train → eval → figure pipeline.

## Citation

```bibtex
@inproceedings{qantara2026,
  title     = {Qantara: Bridge-Flow Training for Multi-Paradigm JEPA Control},
  author    = {Rakhimov, Ruslan and Bredis, George and Maksyuta, Yuriy and Gavrilov, Daniil},
  booktitle = {ICML 2026 Workshop on Decision-Making from Offline Datasets to Online Adaptation: Black-Box Optimization to Reinforcement Learning},
  year      = {2026},
  url       = {https://arxiv.org/abs/2607.04978},
}
```