I'm using PyTorch Lightning and I call the method seed_everything()
, but I don't want to see the INFO logging message
Global seed set to 1234
on every iteration of my main algorithm.
I've tried logging.getLogger('pytorch_lightning').setLevel(logging.ERROR)
in the constructor of the PL object, but it doesn't work. Also tried what is suggested in this answer, but it doesn't work.
Thanks