You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Rem3Di — MACE-POLAR descriptor encoder

⚠️ WEIGHTS ARE HERE, BUT NEED A COMPATIBILITY BRANCH TO LOAD

Four EXP-138 checkpoints are under exp138/ — the same recipe with only the backbone swapped, so they are directly comparable:

Directory Backbone Encoder Final denoising val loss
exp138/polar/ MACE-POLAR-1-M 310 MB 0.000504
exp138/off24/ MACE-OFF24-medium 85 MB 0.000767
exp138/mp0/ MACE-MP-0 85 MB 0.000137
exp138/orb/ Orb-v3 32 MB 0.158772

They do not yet load with released remedi 0.1.1. The PMA rewrite changed head_dim from the total Q/K width to the per-head width, so W_Q is (320,320) where the package builds (2560,640), and there is a new W_O. A PMAAggregatorLegacy on the legacy-checkpoint-compat branch fixes the encoder — verified loading strict, 118/118 keys. The atomic preprocessor still needs the same treatment, because Rem3DiPseudoScalarTP replaced static tensor-product weights with MLP-generated ones.

exp138/polar/ additionally cannot run outside the original group at all, because loading MACE-POLAR needs graph_longrange, which is not published on PyPI. off24 and mp0 work with stock mace-torch and are the realistic candidates for a public release.

Everything below describes the POLAR configuration. Treat it as a specification until the compatibility work lands and this banner is gone.

A learned 3D molecular descriptor. Rem3Di takes per-atom features from a frozen atomistic foundation potential and pools them into a single fixed-length vector per molecule that varies smoothly with 3D structure and is sensitive to chirality.

Paper: arXiv:2607.19977 · Code: molsuit/Rem3Di · Docs: molsuit.github.io/Rem3Di

⚠️ Read this before downloading

These weights do not contain a MACE model, and are useless without one. The backbone is a runtime dependency: Rem3Di calls a frozen MACE-POLAR-1-M at inference and pools its output. You download MACE separately from ACEsuit/mace-foundations and accept its licence directly from its authors.

MACE-POLAR-1 and MACE-OFF are distributed under the ASL (Academic Software Licence): academic use only, no commercial use. So although the Rem3Di code is Apache-2.0 and no MACE weights are redistributed here, running this model requires a licence you must obtain yourself, and in practice that makes this checkpoint academic-use-only. If you need an unencumbered option, an Orb-v3 backbone (Apache-2.0) variant is planned — see the limitations section for what you trade away.

Usage

from remedi.evaluation.benchmark.descriptors import RemediCalculator
from remedi.data_handling.dataset.molecule_dataset import MoleculeDataset
from huggingface_hub import snapshot_download

model_dir = snapshot_download("Felixb7/rem3di-polar")

calc = RemediCalculator(
    model_dir=model_dir,
    device="cuda",                       # or "cpu"
    mace_model_path="/local/MACE-POLAR-1-M.model",   # required: see below
)

dataset = MoleculeDataset.open_existing_dataset_from_dir("/path/to/dataset_zarr")
descriptors = calc.calculate(dataset)    # (N_molecules, 640)

mace_model_path is not optional in practice. The config carries the absolute path the model was trained with on our cluster, which will not exist on your machine.

To build a MoleculeDataset from your own SMILES, see Prepare a dataset.

What you get

Descriptor dimension 640
Backbone MACE-POLAR-1-M (frozen, 4096-d per-atom features)
Encoder 4 pair-biased self-attention layers, width 1088
Pooling PMA, 4 learned seed queries
Parameters (encoder + pooler) 77.5 M
Chirality yes — pseudoscalar channels from the l≥1 features

The descriptor is permutation-invariant, O(3)-invariant up to the chiral channels, and of fixed length regardless of molecule size.

Training

Self-supervised denoising. Atomic embeddings are corrupted, the molecule is encoded to a single descriptor, and a decoder reconstructs the clean embeddings — so geometry must survive the molecule-level bottleneck.

Corpus GEOM-Drugs, top-1 Boltzmann conformer per molecule
Size 281,071 conformers / 278,679 unique molecules
Elements H, C, N, O, F, P, S, Cl, Br, I
Molecule size 3–128 atoms (mean 44.5)
Filters neutral, single fragment, no radicals or isotopes
Split molecule-level random 0.95/0.05 → 267,007 / 14,064
Schedule 24 epochs, AdamW, LR 1e-4, weight decay 1e-3, noise σ 0.3

Evaluation

Benchmarked on TDC ADMET and MoleculeNet with a 5-seed MLP head on the frozen descriptor, official splits. Against other frozen backbones under an identical recipe (30-task relative score, min–max over the four backbones):

Backbone Regression (12) Classification (18) All (30)
MACE-MP-0 0.92 ± 0.10 0.70 ± 0.37 0.79 ± 0.31
MACE-POLAR-1-M 0.84 ± 0.14 0.70 ± 0.33 0.76 ± 0.28
MACE-OFF24-medium 0.70 ± 0.30 0.67 ± 0.28 0.68 ± 0.29
Orb-v3 0.08 ± 0.28 0.08 ± 0.25 0.08 ± 0.26

MP-0 and POLAR are statistically indistinguishable here. POLAR is the released backbone because it also supplies the l≥1 channels the chiral encoder needs.

Adapting beats using it frozen. Relative score across a 13-task ladder:

frozen + LoRA + full fine-tune
Pretrained 0.655 0.814 0.958
Random init 0.018 0.447 0.598

LoRA (r=16, lr 5e-5) recovers most of full fine-tuning at a fraction of the cost. It is sensitive to learning rate — at 1e-4 it collapses to chance.

Limitations

  • Requires an ASL-licensed backbone at runtime. Academic use only in practice.
  • Element coverage is limited to the ten elements above. Molecules outside that set cannot be featurised.
  • Conformer-dependent. The descriptor is a function of the 3D structure you give it. We pretrained on a single Boltzmann-weighted conformer per molecule; results on ensembles or on poor conformers may differ.
  • Orb-backbone caveat. Orb-v3 is Apache-2.0 and would remove the licence problem, but its per-atom latents are not rotation-invariant — re-embedding a rotated molecule shifts them by ~67% of per-channel scale. With 16-rotation test-time averaging an Orb variant reaches 0.766 classification AUROC against a 0.768–0.774 MACE band, but regression stays behind and the chiral channels are unavailable entirely.
  • No formal significance testing. "Tied" above means within one seed-level standard deviation across 5 seeds; no confidence intervals are reported.

Citation

@article{wedig2026rem3di,
  title  = {Rem3Di: Learning smooth, chiral 3D molecular descriptors from
            atomistic foundation models},
  author = {Wedig, Steffen and Burton, Felix and Elijo{\v{s}}ius, Rokas and
            Schran, Christoph and Schaaf, Lars L.},
  journal = {arXiv preprint arXiv:2607.19977},
  year   = {2026}
}

Please also cite MACE-POLAR-1 (arXiv:2602.19411) if you use this checkpoint, since it cannot run without it.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Papers for Felixb7/rem3di-polar