npx skills add ...
npx skills add nvidia/skills --skill kermt-add-cmim-pretrain
Convert a grover_base checkpoint (encoder-only or encoder + vocab heads) into a hybrid checkpoint by adding a randomly-initialized cMIM decoder + latent_dist, then continue pretraining on the user's corpus as hybrid (vocab + contrast). Effectively kermt-continue-pretrain with a one-time ckpt-conversion step prepended.
npx skills add nvidia/skills --skill kermt-add-cmim-pretrain
Convert a grover_base checkpoint (legacy original-GROVER grover.encoders.*
or modern kermt.encoders.*, with or without vocab heads) into a fully-formed
hybrid (cMIM + vocab) checkpoint, then continue pretraining on the user's
corpus as hybrid.
This is a thin wrapper: upgrade_to_hybrid.py produces a new ckpt that
classifies as model_type: hybrid via check_checkpoint.py, and the rest of
the workflow is identical to kermt-continue-pretrain.
Status: experimental. This workflow is functional end-to-end but has not been benchmarked against the manuscript's from-scratch hybrid training (which produces the released checkpoint). Use as an experimental alternative to
kermt-pretrain-scratchwhen you want to extend an existing grover_base checkpoint rather than restart from random init. Validate downstream performance on your own benchmark before relying on the upgraded ckpt for production work.
Set SKILL_DIR to the absolute path of this installed skill directory. Export
KERMT_REPO as the absolute path to the KERMT checkout used for model
execution. The bundled container helper mounts that checkout at
/workspace and this skill at /skill (read-only). Commands inside
the container use /skill/scripts/; defaults are bundled in config/.
Same as kermt-continue-pretrain (the cMIM decoder adds parameters but not
substantially; VRAM headroom should be fine). The upgrade step itself is
fast (~5 s) and CPU-only — only the subsequent continue-pretrain consumes
GPU.
kermt-pretrain-scratch would do at days-scale).For continuing an existing hybrid or cmim ckpt: use kermt-continue-pretrain
directly. For training a fresh model on a custom corpus: use
kermt-pretrain-scratch.
Required:
--ckpt <path> — grover_base ckpt to upgrade. Validated via
check_checkpoint.py --mode upgrade_to_hybrid; rejected if the ckpt
already has a contrast head or task FFN.--csv <path> — pretrain corpus CSV. Same shape as
kermt-continue-pretrain's --csv input.Optional (same as kermt-continue-pretrain):
--val-csv <path> — separate validation CSV. Without it, prepare_data
auto-splits by --val-frac 0.1.--epochs N, --batch-size N, lr triple,
--warmup-epochs F, etc.).--vocab-loss-weight F / --latent-dim N / --contrastive-temperature F.--wandb-project NAME / --wandb-run-name NAME — optional Weights & Biases
logging (run name honored only alongside a project). Off by default.--gpus 0,2.Let $KERMT_REPO be the path to your kermt repo checkout.
Pre-flight: check_system (same as kermt-continue-pretrain step 1).
Compute run directory:
Validate the input ckpt with check_checkpoint --mode upgrade_to_hybrid.
Abort on ok: false. The validator rejects ckpts that already have
contrast head (suggest kermt-continue-pretrain) or task FFN heads
(the ckpt has been finetuned; suggest using the original pretrain
checkpoint).
Validate the corpus via check_data --mode pretrain. Abort on
ok: false.
Prepare the data with --mode pretrain — without --vocab-dir.
The upgrade builds fresh vocab heads sized to the corpus's vocab, so we
want prepare_data to produce a new vocab from the corpus rather than
passing through the ckpt's old vocab (which may not even exist for
encoder-only legacy grover_base ckpts):
The output manifest has vocab_source: "built_fresh" and includes a
smiles_vocab (built from the corpus, needed for the new decoder).
Upgrade the ckpt.
Surface the JSON summary to the user — especially warnings[], which
includes any encoder-arch drift notes (e.g. legacy GROVER had two extra
act_func_* keys that modern KERMTEmbedding doesn't) and the
pretrain_ddp.py --backbone argparse-restriction note if the upgraded
ckpt's backbone is anything other than gtrans.
Estimate runtime + confirm with the user. Same heuristic as
kermt-continue-pretrain (corpus size × epochs × GPU count → wall time).
Launch the runner detached.
The runner sees the upgraded ckpt as model_type: hybrid, so it auto-dispatches
--pretrain_mode hybrid --vocab_loss_weight 1.0 with smiles_vocab plumbed
through.
Report to the user with the upgraded ckpt path + the same run.json
pointer / log path / tensorboard URL pattern as kermt-continue-pretrain.
<run_dir>/upgraded.pt; the source ckpt stays untouched.--backbone choices. If the upgrade warning fires
because the input ckpt's backbone isn't gtrans (e.g. legacy dualtrans),
surface the warning and ask the user. Do NOT silently modify parsing.py to
add the legacy backbone to the choices list.check_checkpoint rejected the ckpt with model_type=hybrid or cmim →
user's ckpt already has a contrast head. Redirect to
kermt-continue-pretrain.check_checkpoint rejected the ckpt with task_ffn=true → the ckpt has
been finetuned. The upgrade workflow only supports pretrain checkpoints.prepare manifest missing smiles_vocab → prepare_data was invoked with
--skip-vocab or some equivalent that omitted the smiles vocab. Re-run
prepare without those flags.unexpected key(s) in encoder load warning → legacy GROVER architectures
saved a couple of act_func_* weights that modern KERMTEmbedding doesn't
use. Benign; the rest of the encoder loaded correctly.run.json after a successful runSame reproducibility fields as kermt-continue-pretrain, plus the upgrade step's
summary.json is captured under the inputs.upgrade_summary path so the
provenance of the upgraded ckpt is auditable.
Same as kermt-continue-pretrain: cmd_replay rebuilds the
run_pretrain_local.py --ckpt <upgraded.pt> ... invocation. To redo the
full add-cmim flow end-to-end, the user also needs the input grover_base
ckpt and the corpus — both are captured in the prepare_data and upgrade
manifests by absolute path.