Hi,
I think the verbosity here:
def log(self, step, data, verbosity=1):
https://github.com/NVIDIA/dllogger/blob/master/dllogger/logger.py#L57
should be set to verbosity=0 because the DEFAULT value is 0. So, any backend other than VERBOSE will not be logging anything. which means DEFAULT is similar to OFF state.
Am I correct here or am I missing something?
Hi,
I think the verbosity here:
def log(self, step, data, verbosity=1):https://github.com/NVIDIA/dllogger/blob/master/dllogger/logger.py#L57
should be set to
verbosity=0because the DEFAULT value is 0. So, any backend other than VERBOSE will not be logging anything. which means DEFAULT is similar to OFF state.Am I correct here or am I missing something?