-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
Thanks for the amazing package! I am having a great time using it.
Issue
Recently, I have been playing around with the weights and biases (W&B) logging functionality and I noticed that I was getting a lot of logging messages in my jupyter notebook while training my model (every epoch I got new messages).
When I looked into logging.__init__.py, the logging basic configuration was set with:
logging.basicConfig(level=logging.INFO)
However, that means a lot of INFO messages are being printed from W&B's use of the logger (e.g. when the RunManager modifies files).
Potential Solution
To disable this, I switched the logging basic configuration in logging.__init__.py to:
logging.basicConfig(level=logging.WARNING)
Would this be a useful addition in general to the package or should I just keep this change local?