File size: 14,104 Bytes
fecdc11 | 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | """Fine-tune an eSEN checkpoint on an ASE database.
The input database must contain ASE calculator results (energy, forces, and
optionally stress). The output checkpoint keeps the native OneScience model
configuration and can be loaded by ``eSENCalculator.from_checkpoint``.
"""
from __future__ import annotations
import argparse
import copy
import json
import os
from dataclasses import dataclass
from pathlib import Path
os.environ.setdefault(
"ONESCIENCE_ESEN_JD_PATH",
os.path.join(os.path.dirname(__file__), "weight", "Jd.pt"),
)
import torch
import yaml
from torch.nn.parallel import DistributedDataParallel
from torch.utils.data import DataLoader, Subset
from torch.utils.data.distributed import DistributedSampler
from onescience.datapipes.materials.custom_stack import data_list_collater
from onescience.datapipes.materials.custom_stack.storage.ase_datasets import AseDBDataset
from onescience.utils.esen.checkpoint import ESENCheckpointTransforms
from onescience.utils.uma.normalization.element_references import (
fit_linear_references,
)
from onescience.utils.uma.common.utils import load_model_and_weights_from_checkpoint
@dataclass(frozen=True)
class DistributedContext:
"""Runtime information for a normal Python process or a torchrun worker."""
rank: int = 0
world_size: int = 1
local_rank: int = 0
@property
def enabled(self) -> bool:
return self.world_size > 1
@property
def is_main(self) -> bool:
return self.rank == 0
def _init_distributed(device_name: str, backend: str) -> DistributedContext:
world_size = int(os.environ.get("WORLD_SIZE", "1"))
if world_size == 1:
if device_name.startswith("cuda") and torch.cuda.is_available():
torch.cuda.set_device(0)
return DistributedContext()
if not torch.distributed.is_available():
raise RuntimeError("torch.distributed is required for multi-device fine-tuning.")
rank = int(os.environ["RANK"])
local_rank = int(os.environ.get("LOCAL_RANK", rank))
if device_name.startswith("cuda"):
if not torch.cuda.is_available():
raise RuntimeError("torchrun requested multiple CUDA/DCU devices, but CUDA is unavailable.")
torch.cuda.set_device(local_rank)
torch.distributed.init_process_group(backend=backend, rank=rank, world_size=world_size)
return DistributedContext(rank=rank, world_size=world_size, local_rank=local_rank)
def _close_distributed(context: DistributedContext) -> None:
if context.enabled and torch.distributed.is_initialized():
torch.distributed.barrier()
torch.distributed.destroy_process_group()
def _loader(
path: str | list[str],
batch_size: int,
workers: int,
max_samples: int | None = None,
context: DistributedContext | None = None,
train: bool = False,
seed: int = 0,
) -> DataLoader:
dataset = AseDBDataset(
{
"src": path,
"a2g_args": {
"r_edges": False,
"r_energy": True,
"r_forces": True,
"r_stress": True,
},
}
)
if max_samples is not None:
sample_count = min(max_samples, len(dataset))
generator = torch.Generator().manual_seed(seed)
indices = torch.randperm(len(dataset), generator=generator)[:sample_count].tolist()
dataset = Subset(dataset, indices)
context = context or DistributedContext()
sampler = None
if context.enabled:
sampler = DistributedSampler(
dataset,
num_replicas=context.world_size,
rank=context.rank,
shuffle=train,
drop_last=False,
)
return DataLoader(
dataset,
batch_size=batch_size,
shuffle=sampler is None and train,
sampler=sampler,
num_workers=workers,
collate_fn=lambda items: data_list_collater(items, otf_graph=True),
)
def _loss(
pred,
batch,
energy_weight: float,
force_weight: float,
stress_weight: float,
transforms: ESENCheckpointTransforms,
):
losses = {}
if energy_weight:
energy_target = transforms.normalize_target(
"energy", batch.energy, pred["energy"], batch
)
energy_error = pred["energy"] - energy_target
natoms_shape = (-1,) + (1,) * (energy_error.ndim - 1)
natoms = batch.natoms.to(energy_error).reshape(natoms_shape)
losses["energy"] = (energy_error / natoms).square().mean()
if force_weight:
force_target = transforms.normalize_target(
"forces", batch.forces, pred["forces"], batch
)
losses["forces"] = (pred["forces"] - force_target).square().mean()
if stress_weight and hasattr(batch, "stress") and "stress" in pred:
stress_target = transforms.normalize_target(
"stress", batch.stress, pred["stress"], batch
)
losses["stress"] = (pred["stress"] - stress_target).square().mean()
total = energy_weight * losses.get("energy", 0.0)
total = total + force_weight * losses.get("forces", 0.0)
total = total + stress_weight * losses.get("stress", 0.0)
return total, {key: float(value.detach()) for key, value in losses.items()}
def _run_epoch(
model,
loader,
device,
optimizer,
weights,
transforms: ESENCheckpointTransforms,
context: DistributedContext,
):
training = optimizer is not None
model.train(training)
total = 0.0
batches = 0
metric_names = tuple(
name
for name, weight in zip(("energy", "forces", "stress"), weights)
if weight
)
metrics = {name: 0.0 for name in metric_names}
for batch in loader:
batch = batch.to(device)
if training:
optimizer.zero_grad(set_to_none=True)
prediction = model(batch)
loss, batch_metrics = _loss(prediction, batch, *weights, transforms)
if training:
loss.backward()
optimizer.step()
total += float(loss.detach())
batches += 1
for key, value in batch_metrics.items():
metrics[key] = metrics.get(key, 0.0) + value
if batches == 0:
raise RuntimeError("The dataset contains no samples.")
values = torch.tensor([total, *metrics.values(), float(batches)], dtype=torch.float64, device=device)
if context.enabled:
torch.distributed.all_reduce(values, op=torch.distributed.ReduceOp.SUM)
global_batches = values[-1].item()
return {
"loss": values[0].item() / global_batches,
**{
key: values[index].item() / global_batches
for index, key in enumerate(metrics, start=1)
},
}
def main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--config", help="YAML configuration path")
parser.add_argument("--checkpoint")
parser.add_argument("--train", help="ASE DB or ASE-LMDB training path")
parser.add_argument("--val", help="ASE DB or ASE-LMDB validation path")
parser.add_argument("--output")
parser.add_argument("--device")
parser.add_argument("--epochs", type=int)
parser.add_argument("--batch-size", type=int)
parser.add_argument("--workers", type=int)
parser.add_argument("--lr", type=float)
parser.add_argument("--energy-weight", type=float)
parser.add_argument("--force-weight", type=float)
parser.add_argument("--stress-weight", type=float)
parser.add_argument("--max-train-samples", type=int)
parser.add_argument("--max-val-samples", type=int)
parser.add_argument("--backend", help="torch.distributed backend for torchrun")
parser.add_argument("--seed", type=int)
parser.add_argument(
"--fit-element-references",
action=argparse.BooleanOptionalAction,
default=None,
help="fit energy element references on the training data",
)
args = parser.parse_args()
if not args.config:
parser.error("--config is required; use a YAML file from demo/configs")
config_path = args.config
with Path(config_path).expanduser().open() as handle:
config = yaml.safe_load(handle) or {}
for key, value in config.items():
if getattr(args, key.replace("-", "_"), None) is None:
setattr(args, key.replace("-", "_"), value)
for key in ("checkpoint", "train", "val", "output"):
value = getattr(args, key)
if value is not None:
if isinstance(value, list):
value = [
os.path.expandvars(os.path.expanduser(str(item)))
for item in value
]
else:
value = os.path.expandvars(os.path.expanduser(str(value)))
setattr(args, key, value)
required = ("checkpoint", "train", "val", "output")
missing = [key for key in required if not getattr(args, key)]
if missing:
parser.error("missing required config fields: " + ", ".join(missing))
args.backend = args.backend or "nccl"
args.seed = 0 if args.seed is None else args.seed
args.fit_element_references = bool(args.fit_element_references)
if not any((args.energy_weight, args.force_weight, args.stress_weight)):
parser.error("at least one of energy_weight, force_weight, or stress_weight must be nonzero")
if args.device.startswith("cuda") and not torch.cuda.is_available():
raise RuntimeError("CUDA/DCU was requested but torch.cuda.is_available() is false.")
context = _init_distributed(args.device, args.backend)
try:
if args.device.startswith("cuda"):
device = torch.device(f"cuda:{context.local_rank}")
else:
device = torch.device(args.device)
torch.manual_seed(args.seed + context.rank)
# Import registrations before the generic native checkpoint loader.
import onescience.models.esen # noqa: F401
model = load_model_and_weights_from_checkpoint(args.checkpoint).to(device)
transforms = ESENCheckpointTransforms.from_checkpoint(args.checkpoint)
if args.fit_element_references:
reference_dataset = _loader(
args.train, args.batch_size, args.workers
).dataset
fitted_references = fit_linear_references(
targets=["energy"],
dataset=reference_dataset,
batch_size=args.batch_size,
num_workers=args.workers,
log_metrics=False,
shuffle=False,
)
transforms.elementrefs["energy"] = fitted_references["energy"]
if context.is_main:
print("fitted energy element references from training data", flush=True)
transforms = transforms.to(device)
if context.enabled:
model = DistributedDataParallel(
model,
device_ids=[context.local_rank] if device.type == "cuda" else None,
output_device=context.local_rank if device.type == "cuda" else None,
)
optimizer = torch.optim.AdamW(model.parameters(), lr=args.lr)
train_loader = _loader(
args.train,
args.batch_size,
args.workers,
args.max_train_samples,
context=context,
train=True,
seed=args.seed,
)
val_loader = _loader(
args.val,
args.batch_size,
args.workers,
args.max_val_samples,
context=context,
train=False,
seed=args.seed + 1,
)
weights = (args.energy_weight, args.force_weight, args.stress_weight)
history = []
for epoch in range(args.epochs):
if isinstance(train_loader.sampler, DistributedSampler):
train_loader.sampler.set_epoch(epoch)
train_metrics = _run_epoch(
model, train_loader, device, optimizer, weights, transforms, context
)
# Force/stress outputs are gradients of the energy, so validation also
# needs autograd even though model parameters are not updated.
val_metrics = _run_epoch(
model, val_loader, device, None, weights, transforms, context
)
record = {"epoch": epoch, "train": train_metrics, "val": val_metrics}
if context.is_main:
history.append(record)
print(json.dumps(record, sort_keys=True), flush=True)
if context.is_main:
output = Path(args.output)
output.parent.mkdir(parents=True, exist_ok=True)
source = torch.load(args.checkpoint, map_location="cpu", weights_only=False)
checkpoint = copy.deepcopy(source)
base_model = model.module if context.enabled else model
checkpoint["state_dict"] = {
key: value.detach().cpu() for key, value in base_model.state_dict().items()
}
checkpoint["elementrefs"] = {
name: {
key: value.detach().cpu()
for key, value in elementref.state_dict().items()
}
for name, elementref in transforms.elementrefs.items()
}
checkpoint.setdefault("metadata", {})
checkpoint["metadata"].update(
{
"onescience_esen_history": history,
"source_checkpoint": args.checkpoint,
"world_size": context.world_size,
"loss_space": "checkpoint_normalized",
"element_references": (
"fitted_from_training_data"
if args.fit_element_references
else "source_checkpoint"
),
}
)
torch.save(checkpoint, output)
print(f"saved checkpoint: {output}", flush=True)
finally:
_close_distributed(context)
if __name__ == "__main__":
main()
|