From f058b79da5ebec4553d8b2430a597dae37ad98c1 Mon Sep 17 00:00:00 2001 From: Michael <m.langguth@fz-juelich.de> Date: Sun, 14 Feb 2021 15:37:03 +0100 Subject: [PATCH] Minor correction to data_split-template. Remove also data_split_config-directory from .gitignore, since the cutomized datasplit-files are stored in individual training directories. --- .gitignore | 5 ----- .../data_split/era5/datasplit_template.json | 5 +++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index aae82f1d..eb06f09d 100644 --- a/.gitignore +++ b/.gitignore @@ -127,8 +127,3 @@ video_prediction_tools/HPC_scripts/** video_prediction_tools/nonHPC_scripts/** !video_prediction_tools/nonHPC_scripts/*_template.sh -# Ignore datasplit config files -video_prediction_tools/data_split/** -!video_prediction_tools/data_split/datasplit_template.json -!video_prediction_tools/data_split/cv_test.json -!video_predcition_tools/Zam347_scripts/config_train.py diff --git a/video_prediction_tools/data_split/era5/datasplit_template.json b/video_prediction_tools/data_split/era5/datasplit_template.json index e3067e32..360748fb 100644 --- a/video_prediction_tools/data_split/era5/datasplit_template.json +++ b/video_prediction_tools/data_split/era5/datasplit_template.json @@ -3,11 +3,12 @@ # # Explanation: In the following, the data of the whole year 2015 and the first half of 2016 is used for training, # while the data of 2017 and 2018 are used for validation and testing, respectively. -# Be aware that this is a prue data file, i.e. do not make use of any Python-functions such as np.range or similar here! +# Be aware that this is a pure data file, i.e. do not make use of any Python-functions +# such as np.range or similar here! { "train":{ "2015":[1,2,3,4,5,6,7,8,9,10,11,12], - "2016":[1,2,3,4,5,6] + "2016":[1,2,3,4,5,6] }, "val": { -- GitLab