From a66ec85dbcc17f1913b8b6e2353a2c2ccdc8f09c Mon Sep 17 00:00:00 2001 From: Remi Cresson <remi.cresson@inrae.fr> Date: Thu, 22 Sep 2022 10:43:28 +0200 Subject: [PATCH 1/2] DOC: update release notes --- RELEASE_NOTES.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index 5d78c0d7..47bfb990 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -1,3 +1,12 @@ +Version 3.3.2 (22 sep 2022) +---------------------------------------------------------------- +* `otbtf.TFRecords` can be used in environments where only TensorFlow is present, without GDAL or OTB (e.g. HPC centers). +* Simplify the `plot()` method in the `otbtf.ModelBase` class +* Upgrade OTB to version 8.1.0 +* Build GDAL with GEOS support +* Add a warning message in `TFRecords` when output_shape or output_type is missing +* Upgrade pip in the docker images + Version 3.3.0 (27 jul 2022) ---------------------------------------------------------------- * Improves the `dataset` classes (`DatasetFromPatchesImages`, `TFRecords`) to use them easily in keras -- GitLab From d963dc547cc40a5962240c5b8e3b308d23abe3e6 Mon Sep 17 00:00:00 2001 From: Remi Cresson <remi.cresson@inrae.fr> Date: Thu, 22 Sep 2022 10:44:23 +0200 Subject: [PATCH 2/2] CI: bump OTBTF version to 3.3.2 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 03a377d4..2e25927a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME variables: - OTBTF_VERSION: 3.3.0 + OTBTF_VERSION: 3.3.2 OTB_BUILD: /src/otb/build/OTB/build # Local OTB build directory OTBTF_SRC: /src/otbtf # Local OTBTF source directory OTB_TEST_DIR: $OTB_BUILD/Testing/Temporary # OTB testing directory -- GitLab