From f3566b043e6ce0b61776716fac30743d90ddb915 Mon Sep 17 00:00:00 2001 From: Leif Denby Date: Tue, 1 Oct 2024 08:39:46 +0000 Subject: [PATCH] tweak print statement working in mdp --- neural_lam/datastore/mdp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neural_lam/datastore/mdp.py b/neural_lam/datastore/mdp.py index 7384396d..e6f7888d 100644 --- a/neural_lam/datastore/mdp.py +++ b/neural_lam/datastore/mdp.py @@ -71,7 +71,7 @@ def __init__(self, config_path, n_boundary_points=30, reuse_existing=True): self._ds.to_zarr(fp_ds) self._n_boundary_points = n_boundary_points - print("Training with the following features:") + print("The loaded datastore contains the following features:") for category in ["state", "forcing", "static"]: if len(self.get_vars_names(category)) > 0: print(f"{category}: {' '.join(self.get_vars_names(category))}")