Views
No views yet
caithmac/MolE-RTD-ZINC1.5B.encoder_weights.pt is the fixed 50,000-step Step-2 snapshot used for the
reported 22-task TDC evaluation.7940ca66fc8f6785d6ae2e63b3965f69425e872cd28f4a975493fb1972742ee1checkpoints/. The 50K snapshot
was fixed before test evaluation; it was not selected using TDC test scores.
training_state/training_state_latest.pt is the resumable 80K training state,
not an inference checkpoint. Evaluation summaries and provenance are in
results/.1import torch
2from huggingface_hub import hf_hub_download
3from encoder_arch import resolve_encoder_config
4from DeBERTa.deberta.config import ModelConfig
5from mole.training.models.mole import AtomEnvEmbeddings
6
7path = hf_hub_download(
8 "caithmac/MolE-RTD-ZINC1.5B-S2",
9 "encoder_weights.pt",
10)
11state = torch.load(path, map_location="cpu", weights_only=False)
12config = resolve_encoder_config(state, requested="rtd25_step1")
13
14encoder = AtomEnvEmbeddings(ModelConfig.from_dict(config))
15encoder.load_state_dict(state, strict=True)
16encoder.eval()FINETUNE_AND_REPRESENT.md for downstream examples.