PBL-Emulator / scripts /result.py
zhangrenchao's picture
Publish PBL-Emulator engineering reproduction
702a3cf verified
Raw
History Blame Contribute Delete
470 Bytes
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"]})