From 4f0c1669e77f94b795674796f67dd5cfbd885975 Mon Sep 17 00:00:00 2001 From: Enxhi Kreshpa <e.kreshpa@fz-juelich.de> Date: Thu, 30 Sep 2021 09:57:12 +0200 Subject: [PATCH] Added licensing tags. --- LICENSE | 21 +++++++++++++++++++ .../main_scripts/main_data_extraction.py | 4 ++++ .../main_scripts/main_meta_postprocess.py | 4 ++++ .../main_preprocess_data_step1.py | 4 ++++ .../main_preprocess_data_step2.py | 4 ++++ .../main_scripts/main_train_models.py | 9 ++++---- .../main_visualize_postprocess.py | 4 ++++ 7 files changed, 46 insertions(+), 4 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..325c1387 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/video_prediction_tools/main_scripts/main_data_extraction.py b/video_prediction_tools/main_scripts/main_data_extraction.py index cced2953..494540ee 100644 --- a/video_prediction_tools/main_scripts/main_data_extraction.py +++ b/video_prediction_tools/main_scripts/main_data_extraction.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# +# SPDX-License-Identifier: MIT + __email__ = "b.gong@fz-juelich.de" __author__ = "Bing Gong, Amirpasha Mozaffari" __date__ = "2020-11-10" diff --git a/video_prediction_tools/main_scripts/main_meta_postprocess.py b/video_prediction_tools/main_scripts/main_meta_postprocess.py index 45ea1dc7..f752ef7e 100644 --- a/video_prediction_tools/main_scripts/main_meta_postprocess.py +++ b/video_prediction_tools/main_scripts/main_meta_postprocess.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# +# SPDX-License-Identifier: MIT + from __future__ import absolute_import from __future__ import division from __future__ import print_function diff --git a/video_prediction_tools/main_scripts/main_preprocess_data_step1.py b/video_prediction_tools/main_scripts/main_preprocess_data_step1.py index 01b641b8..0c675df6 100755 --- a/video_prediction_tools/main_scripts/main_preprocess_data_step1.py +++ b/video_prediction_tools/main_scripts/main_preprocess_data_step1.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# +# SPDX-License-Identifier: MIT + """ Driver for preprocessing step 1 which parses the input arguments from the runscript and performs parallelization with PyStager. diff --git a/video_prediction_tools/main_scripts/main_preprocess_data_step2.py b/video_prediction_tools/main_scripts/main_preprocess_data_step2.py index 1a16e4e7..e71b5b58 100644 --- a/video_prediction_tools/main_scripts/main_preprocess_data_step2.py +++ b/video_prediction_tools/main_scripts/main_preprocess_data_step2.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# +# SPDX-License-Identifier: MIT + """ Driver for preprocessing step 2 which parses the input arguments from the runscript and performs parallelization with OpenMPI. diff --git a/video_prediction_tools/main_scripts/main_train_models.py b/video_prediction_tools/main_scripts/main_train_models.py index a54abb14..4fe3e518 100644 --- a/video_prediction_tools/main_scripts/main_train_models.py +++ b/video_prediction_tools/main_scripts/main_train_models.py @@ -1,11 +1,12 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# SPDX-FileCopyrightText: 2018 Alex X. Lee +# +# SPDX-License-Identifier: MIT + from __future__ import absolute_import from __future__ import division from __future__ import print_function -""" -We took the code implementation from https://github.com/alexlee-gk/video_prediction, SAVP model as reference, and adjust the code based on our project needs -""" - __email__ = "b.gong@fz-juelich.de" __author__ = "Bing Gong, Michael Langguth" __date__ = "2020-10-22" diff --git a/video_prediction_tools/main_scripts/main_visualize_postprocess.py b/video_prediction_tools/main_scripts/main_visualize_postprocess.py index 67c064ea..65df7e4a 100644 --- a/video_prediction_tools/main_scripts/main_visualize_postprocess.py +++ b/video_prediction_tools/main_scripts/main_visualize_postprocess.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2021 Earth System Data Exploration (ESDE), Jülich Supercomputing Center (JSC) +# +# SPDX-License-Identifier: MIT + from __future__ import absolute_import from __future__ import division from __future__ import print_function -- GitLab