From e908e4b6932809032b043d38c5451b0c48222ce6 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Aug 2024 18:50:26 +0100 Subject: [PATCH] dlr: Note about RANDSEED --- aimodel/src/deeplabv3_plus_test_rainfall.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aimodel/src/deeplabv3_plus_test_rainfall.py b/aimodel/src/deeplabv3_plus_test_rainfall.py index 8336553..659a844 100755 --- a/aimodel/src/deeplabv3_plus_test_rainfall.py +++ b/aimodel/src/deeplabv3_plus_test_rainfall.py @@ -56,6 +56,7 @@ WATER_THRESHOLD = env.read("WATER_THRESHOLD", float, 0.1) UPSAMPLE = env.read("UPSAMPLE", int, 2) SPLIT_VALIDATE = env.read("SPLIT_VALIDATE", float, 0.2) SPLIT_TEST = env.read("SPLIT_TEST", float, 0) +# NOTE: RANDSEED is declared and handled in src/lib/dataset/primitives/shuffle.py STEPS_PER_EXECUTION = env.read("STEPS_PER_EXECUTION", int, 1) JIT_COMPILE = env.read("JIT_COMPILE", bool, False)