File size: 9,674 Bytes
5b87d5f | 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 | from __future__ import annotations
import argparse
import os
import sys
from pathlib import Path
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
import numpy as np
import torch
import yaml
PROJECT_ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(PROJECT_ROOT))
from model.gpinn import ( # noqa: E402
exact_poisson1d,
exact_poisson2d,
gPINN,
gPINNBurgers,
gPINNPoisson2D,
)
DEFAULT_CONFIG = PROJECT_ROOT / "conf" / "config.yaml"
CASES = ("1d", "2d", "burgers")
def load_config(path: Path) -> dict:
with path.open("r", encoding="utf-8") as stream:
config = yaml.safe_load(stream)
if not isinstance(config, dict) or "root" not in config:
raise ValueError(f"config must contain a 'root' mapping: {path}")
return config["root"]
def project_path(value: str | Path) -> Path:
path = Path(value).expanduser()
return path if path.is_absolute() else PROJECT_ROOT / path
def resolve_device(requested: str) -> torch.device:
if requested == "auto":
return torch.device("cuda" if torch.cuda.is_available() else "cpu")
device = torch.device(requested)
if device.type == "cuda" and not torch.cuda.is_available():
raise RuntimeError("CUDA/DCU was requested but torch.cuda.is_available() is false")
return device
def resolve_dtype(name: str) -> torch.dtype:
try:
return {"float32": torch.float32, "float64": torch.float64}[name]
except KeyError as error:
raise ValueError(f"unsupported dtype: {name}") from error
def load_checkpoint(weight_dir: Path, filename: str) -> dict:
checkpoint_path = weight_dir / filename
if not checkpoint_path.is_file():
raise FileNotFoundError(
f"checkpoint not found: {checkpoint_path}. Run scripts/train.py first."
)
checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=True)
if not isinstance(checkpoint, dict) or "model_state" not in checkpoint:
raise ValueError(f"invalid checkpoint format: {checkpoint_path}")
return checkpoint
def infer_poisson1d(
weight_dir: Path,
result_dir: Path,
device: torch.device,
dtype: torch.dtype,
) -> float:
checkpoint = load_checkpoint(weight_dir, "gpinn_poisson1d.pt")
layers = checkpoint.get("layers", [1, 30, 30, 30, 30, 1])
model = gPINN(layers).to(device=device, dtype=dtype)
model.load_state_dict(checkpoint["model_state"], strict=True)
model.eval()
x = torch.linspace(0.0, np.pi, 1000, dtype=dtype, device=device).unsqueeze(-1)
exact = exact_poisson1d(x.cpu().numpy().reshape(-1))
with torch.no_grad():
prediction = model(x).cpu().numpy().reshape(-1)
relative_l2 = float(np.linalg.norm(prediction - exact) / np.linalg.norm(exact))
figure, axis = plt.subplots(figsize=(8, 4))
axis.plot(x.cpu().numpy(), exact, "k-", label="Exact")
axis.plot(x.cpu().numpy(), prediction, "r--", label="gPINN")
axis.set_xlabel("x")
axis.set_ylabel("u")
axis.legend()
figure.tight_layout()
output_path = result_dir / "gpinn_poisson1d.png"
figure.savefig(output_path, dpi=150)
plt.close(figure)
print(f"[1D] relative L2={relative_l2:.6e}, plot={output_path}")
return relative_l2
def infer_poisson2d(
weight_dir: Path,
result_dir: Path,
device: torch.device,
dtype: torch.dtype,
default_exponent: float,
) -> float:
checkpoint = load_checkpoint(weight_dir, "gpinn_poisson2d.pt")
layers = checkpoint.get("layers", [2, 30, 30, 30, 1])
architecture = checkpoint.get("architecture", "gpinn")
if architecture == "poisson2d_hard_bc":
model = gPINNPoisson2D(layers)
elif architecture == "gpinn":
# The bundled legacy checkpoint predates the hard boundary transform.
model = gPINN(layers)
else:
raise ValueError(f"unsupported 2D Poisson architecture: {architecture}")
model = model.to(device=device, dtype=dtype)
model.load_state_dict(checkpoint["model_state"], strict=True)
model.eval()
exponent = float(checkpoint.get("a", default_exponent))
axis = np.linspace(0.0, 1.0, 100)
grid_x, grid_y = np.meshgrid(axis, axis)
coordinates = torch.as_tensor(
np.column_stack([grid_x.ravel(), grid_y.ravel()]), dtype=dtype, device=device
)
with torch.no_grad():
prediction = model(coordinates).cpu().numpy().reshape(grid_x.shape)
exact = exact_poisson2d(grid_x, grid_y, exponent)
absolute_error = np.abs(prediction - exact)
relative_l2 = float(
np.linalg.norm(prediction.ravel() - exact.ravel()) / np.linalg.norm(exact.ravel())
)
figure, axes = plt.subplots(1, 3, figsize=(15, 4))
for plot_axis, title, field in zip(
axes,
("Exact", "gPINN", "Absolute error"),
(exact, prediction, absolute_error),
strict=True,
):
image = plot_axis.imshow(field, extent=(0, 1, 0, 1), origin="lower", cmap="jet")
plot_axis.set_title(title)
plot_axis.set_xlabel("x")
plot_axis.set_ylabel("y")
figure.colorbar(image, ax=plot_axis)
figure.tight_layout()
output_path = result_dir / "gpinn_poisson2d.png"
figure.savefig(output_path, dpi=150)
plt.close(figure)
print(f"[2D] relative L2={relative_l2:.6e}, plot={output_path}")
return relative_l2
def load_burgers_grid(data_path: Path) -> tuple[np.ndarray, np.ndarray, np.ndarray]:
if not data_path.is_file():
raise FileNotFoundError(f"Burgers data not found: {data_path}")
with np.load(data_path) as data:
missing = {"t", "x", "usol"}.difference(data.files)
if missing:
raise ValueError(f"Burgers data is missing arrays: {sorted(missing)}")
time_axis = np.asarray(data["t"]).reshape(-1)
space_axis = np.asarray(data["x"]).reshape(-1)
exact = np.asarray(data["usol"])
expected_shape = (space_axis.size, time_axis.size)
if exact.shape != expected_shape:
raise ValueError(f"usol shape must be {expected_shape}, got {exact.shape}")
return time_axis, space_axis, exact
def infer_burgers(
weight_dir: Path,
result_dir: Path,
data_path: Path,
device: torch.device,
dtype: torch.dtype,
) -> float:
checkpoint = load_checkpoint(weight_dir, "gpinn_burgers.pt")
layers = checkpoint.get("layers", [2, 32, 32, 32, 1])
model = gPINNBurgers(layers).to(device=device, dtype=dtype)
model.load_state_dict(checkpoint["model_state"], strict=True)
model.eval()
time_axis, space_axis, exact = load_burgers_grid(data_path)
time_grid, space_grid = np.meshgrid(time_axis, space_axis)
coordinates = torch.as_tensor(
np.column_stack([space_grid.ravel(), time_grid.ravel()]),
dtype=dtype,
device=device,
)
with torch.no_grad():
prediction = model(coordinates).cpu().numpy().reshape(exact.shape)
absolute_error = np.abs(prediction - exact)
relative_l2 = float(
np.linalg.norm(prediction.ravel() - exact.ravel()) / np.linalg.norm(exact.ravel())
)
figure, axes = plt.subplots(1, 3, figsize=(15, 4))
for plot_axis, title, field in zip(
axes,
("Exact", "gPINN", "Absolute error"),
(exact, prediction, absolute_error),
strict=True,
):
image = plot_axis.contourf(time_axis, space_axis, field, 100, cmap="jet")
plot_axis.set_title(title)
plot_axis.set_xlabel("t")
plot_axis.set_ylabel("x")
figure.colorbar(image, ax=plot_axis)
figure.tight_layout()
output_path = result_dir / "gpinn_burgers.png"
figure.savefig(output_path, dpi=150)
plt.close(figure)
print(f"[Burgers] relative L2={relative_l2:.6e}, plot={output_path}")
return relative_l2
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(description="Run gPINN inference and visualization")
parser.add_argument(
"--config",
type=Path,
default=Path(os.environ.get("GPINN_CONFIG", DEFAULT_CONFIG)),
help="YAML configuration file",
)
parser.add_argument("--case", choices=(*CASES, "all"), default="all")
parser.add_argument("--device", help="Override common.device, for example cpu or cuda:0")
parser.add_argument("--data", type=Path, help="Override Burgers.npz path")
parser.add_argument("--weight-dir", type=Path, help="Override checkpoint input directory")
parser.add_argument("--result-dir", type=Path, help="Override plot output directory")
return parser.parse_args()
def main() -> None:
args = parse_args()
config_path = args.config.expanduser().resolve()
config = load_config(config_path)
common = config["common"]
device = resolve_device(args.device or str(common["device"]))
dtype = resolve_dtype(str(common["dtype"]))
weight_dir = project_path(args.weight_dir or common["weight_dir"])
result_dir = project_path(args.result_dir or common["result_dir"])
data_path = project_path(args.data or config["burgers"]["data"])
result_dir.mkdir(parents=True, exist_ok=True)
print(f"Config: {config_path}")
print(f"Device: {device}")
selected_cases = CASES if args.case == "all" else (args.case,)
if "1d" in selected_cases:
infer_poisson1d(weight_dir, result_dir, device, dtype)
if "2d" in selected_cases:
infer_poisson2d(
weight_dir,
result_dir,
device,
dtype,
float(config["poisson2d"]["a"]),
)
if "burgers" in selected_cases:
infer_burgers(weight_dir, result_dir, data_path, device, dtype)
if __name__ == "__main__":
main()
|