From 900567f9e3af228114cb65e77ce5d1adb542c9f0 Mon Sep 17 00:00:00 2001 From: Michael <m.langguth@fz-juelich.de> Date: Sat, 13 Feb 2021 20:56:30 +0100 Subject: [PATCH] Coorect preprocess_data_era5_step2_template.sh . --- .../HPC_scripts/preprocess_data_era5_step2_template.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/video_prediction_tools/HPC_scripts/preprocess_data_era5_step2_template.sh b/video_prediction_tools/HPC_scripts/preprocess_data_era5_step2_template.sh index a3e397af..56f9a8aa 100644 --- a/video_prediction_tools/HPC_scripts/preprocess_data_era5_step2_template.sh +++ b/video_prediction_tools/HPC_scripts/preprocess_data_era5_step2_template.sh @@ -33,9 +33,11 @@ if [ -z ${VIRTUAL_ENV} ]; then fi # declare directory-variables which will be modified by config_runscript.py -base_dir=/my/path/to/base/dir/ +source_dir=/my/path/to/pkl/files/ +destination_dir=/my/path/to/tfrecords/files + sequence_length=20 sequences_per_file=10 # run Preprocessing (step 2 where Tf-records are generated) -srun python ../main_scripts/main_preprocess_data_step2.py -base_dir ${base_dir} -sequence_length ${sequence_length} \ - -sequences_per_file ${sequences_per_file} +srun python ../main_scripts/main_preprocess_data_step2.py -source_dir ${source_dir} -dest_dir ${destination_dir} \ + -sequence_length ${sequence_length} -sequences_per_file ${sequences_per_file} -- GitLab