From 8a8b51b4a89526007f03e6e073d7933dc1244ae8 Mon Sep 17 00:00:00 2001 From: Michael <m.langguth@fz-juelich.de> Date: Mon, 16 Nov 2020 10:30:10 +0100 Subject: [PATCH] Added template for datasplit config file. --- .../data_split/datasplit_template.json | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 video_prediction_tools/data_split/datasplit_template.json diff --git a/video_prediction_tools/data_split/datasplit_template.json b/video_prediction_tools/data_split/datasplit_template.json new file mode 100644 index 00000000..cae673c2 --- /dev/null +++ b/video_prediction_tools/data_split/datasplit_template.json @@ -0,0 +1,21 @@ +# NOTE: This json-file should not be processed and simply serves as an exemplary file for configuringing the datasplit. +# If you would like to generate your own datasplit config file, you may copy this template and modify it to your personal needs. +# However, remember to remove any comment lines (starting with #) from your config-file then!!! +# +# 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! +{ + "train":{ + "2015":[1,2,3,4,5,6,7,8,9,10,11,12], + "2016":[1,2,3,4,5,6] + }, + "val": + { + "2017":[1,2,3,4,5,6,7,8,9,10,11,12] + }, + "test": + { + "2018":[1,2,3,4,5,6,7,8,9,10,11,12] + } + } -- GitLab