From ab3c3f76582a33f2c205a76037f15b86fb5aa1ed Mon Sep 17 00:00:00 2001
From: Christian Schiffer <c.schiffer@fz-juelich.de>
Date: Wed, 31 Mar 2021 14:51:15 +0200
Subject: [PATCH] Fixed extended range computation

---
 atlas_server/src/static/training/config.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/atlas_server/src/static/training/config.py b/atlas_server/src/static/training/config.py
index a3663da..e8e5d8a 100644
--- a/atlas_server/src/static/training/config.py
+++ b/atlas_server/src/static/training/config.py
@@ -17,8 +17,7 @@ def make_training_parameters(**kwargs):
     from_section = min(sections)
     to_section = max(sections)
     section_range = to_section - from_section
-    section_range = int(math.ceil((1 + increase) * section_range))
-    increase = int(math.ceil(section_range / 2))
+    increase = int(math.ceil(section_range * increase)) // 2
     min_section = max(from_section - increase, 1)
     max_section = to_section + increase
 
-- 
GitLab