Commit 56849437 authored by Gustaf Ahdritz's avatar Gustaf Ahdritz
Browse files

Remove print statement

parent bb6f6145
...@@ -12,7 +12,7 @@ def seed_globally(seed=None): ...@@ -12,7 +12,7 @@ def seed_globally(seed=None):
if(seed is None): if(seed is None):
seed = random.randint(0, np.iinfo(np.uint32).max) seed = random.randint(0, np.iinfo(np.uint32).max)
os.environ["PL_GLOBAL_SEED"] = str(seed) os.environ["PL_GLOBAL_SEED"] = str(seed)
print(f'os.environ["PL_GLOBAL_SEED"] set to {seed}') logging.info(f'os.environ["PL_GLOBAL_SEED"] set to {seed}')
# seed_everything is a bit log-happy # seed_everything is a bit log-happy
with SuppressLogging(logging.INFO): with SuppressLogging(logging.INFO):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment