fix get_fixed_seed

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2026-01-20 18:33:39 +01:00
parent bb1e62f2ae
commit a7b69cd805
+1 -1
View File
@@ -227,7 +227,7 @@ def decode_first_stage(model, x):
def get_fixed_seed(seed):
if seed is None or seed == '' or seed == -1:
if (seed is None) or (seed == '') or (seed == -1):
random.seed()
seed = int(random.randrange(4294967294))
return seed