From 90ca40041ed072340c68f5aba00fcf8353c74b99 Mon Sep 17 00:00:00 2001 From: Leif Denby Date: Thu, 12 Sep 2024 11:35:29 +0200 Subject: [PATCH] missed renames for MDPDatastore --- README.md | 4 ++-- tests/conftest.py | 2 +- tests/datastore_examples/{mllam => mdp}/.gitignore | 0 tests/datastore_examples/{mllam => mdp}/danra.example.yaml | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename tests/datastore_examples/{mllam => mdp}/.gitignore (100%) rename tests/datastore_examples/{mllam => mdp}/danra.example.yaml (100%) diff --git a/README.md b/README.md index 6fa4bd98..e4a1989b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ There are currently three different datastores implemented in the codebase: files during train/val/test sampling, with the transformations to facilitate this implemented within `neural_lam.datastore.MultizarrDatastore`. -3. `neural_lam.datastore.MLLAMDatastore` which can combine multiple zarr +3. `neural_lam.datastore.MDPDatastore` which can combine multiple zarr datasets either either as a preprocessing step or during sampling, but offloads the implementation of the transformations the [mllam-data-prep](https://github.com/mllam/mllam-data-prep) package. @@ -156,7 +156,7 @@ The amount of pre-processing required will depend on what kind of datastore you #### NpyFiles Datastore -#### MLLAM Datastore +#### MDP (mllam-data-prep) Datastore An overview of how the different pre-processing steps, training and files depend on each other is given in this figure:

diff --git a/tests/conftest.py b/tests/conftest.py index f5679c66..a5440275 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -59,7 +59,7 @@ def download_meps_example_reduced_dataset(): DATASTORES_EXAMPLES = dict( - mllam=(DATASTORE_EXAMPLES_ROOT_PATH / "mllam" / "danra.example.yaml"), + mdp=(DATASTORE_EXAMPLES_ROOT_PATH / "mdp" / "danra.example.yaml"), npyfiles=download_meps_example_reduced_dataset(), ) diff --git a/tests/datastore_examples/mllam/.gitignore b/tests/datastore_examples/mdp/.gitignore similarity index 100% rename from tests/datastore_examples/mllam/.gitignore rename to tests/datastore_examples/mdp/.gitignore diff --git a/tests/datastore_examples/mllam/danra.example.yaml b/tests/datastore_examples/mdp/danra.example.yaml similarity index 100% rename from tests/datastore_examples/mllam/danra.example.yaml rename to tests/datastore_examples/mdp/danra.example.yaml