File size: 544 Bytes
9613b5e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from pathlib import Path
import sys
ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(ROOT))
from model.atmosphericda_dmodel import load_yaml, run_inference
if __name__ == "__main__":
config = load_yaml(ROOT / "conf/config.yaml")
metrics = run_inference(
str(ROOT / config["paths"]["data"]),
str(ROOT / config["paths"]["checkpoint"]),
str(ROOT / config["paths"]["predictions"]), config["project"]["format_version"],
)
print(f"saved predictions: {metrics['hybrid_prediction'].shape}")
|