File size: 470 Bytes
702a3cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from pathlib import Path
import sys
ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(ROOT))
from model.pbl_emulator import evaluate, load_yaml
if __name__ == "__main__":
config = load_yaml(ROOT / "conf/config.yaml")
summary = evaluate(ROOT / config["paths"]["predictions"], ROOT / config["paths"]["evaluation_metrics"], ROOT / config["paths"]["figure"])
print({"primary": summary["primary"], "wind_direction": summary["wind_direction"]})
|