ludwig icon indicating copy to clipboard operation
ludwig copied to clipboard

Clean up `logger = logging.getLogger(__name__)`

Open justinxzhao opened this issue 3 years ago • 0 comments
trafficstars

There are vestiges of a mechanism that was introduced to Ludwig to workaround an issue with tensorflow's logging:

import logging

logger = logging.getLogger(__name__)

...

logger.info()

In torch, these should be able to be replaced with out-of-the-box logging:

import logging

logging.info()

justinxzhao avatar May 19 '22 23:05 justinxzhao