Views
No views yet
| Directory | Model | Description |
|---|---|---|
Graphormer/ | Graphormer | Graphormer base model |
Graphormer-NGL/ | Graphormer NGL | Graphormer fine-tuned with the nuclear gradient loss |
eSEN/ | eSEN | eSEN base model |
eSEN-NGL/ | eSEN NGL | eSEN fine-tuned with the nuclear gradient loss |
model.yaml
inference configuration, and the original hparams.yaml and
hparams_resolved.yaml files. SHA256SUMS records the checksums of all four
weight files.sciai-lab/structures25-nuclear-gradients,
then load a checkpoint with the project helper:1from pathlib import Path
2
3from huggingface_hub import snapshot_download
4
5from mldft.utils.instantiators import instantiate_model
6
7repo = Path(snapshot_download("sciai-lab/structures25-nuclear-gradients"))
8model = instantiate_model(repo / "eSEN-NGL" / "eSEN-NGL.safetensors", device="cpu")