Hi Team, is there a way to increase verbosity in k...
# questions
a
Hi Team, is there a way to increase verbosity in kedro, if I am running a model (say tensorflow) and I want to see metrics of each epoch, I am currently unable to see each iteration metrics when I run them as part of pipeline. Something like this:
d
So I think you’d have to add the logging yourself, what are you looking to do?
a
I am running a model, and I want to see output like this in console when its running:
Where I can see results of each epoch or iteration
d
this is a Keras problem not a Kedro one, it’s not my area but you need This answer looks helpful, just grab a logger using the standard way `
Copy code
logger= logging.getLogger(__name__) 
<http://logger.info|logger.info>('my message')
https://stackoverflow.com/a/72662064/2010808
a
Thanks, although I have been facing this issue with other libraries as well, some of the logs arent printed in console
n
I don’t think Kedro will change this behavior, but look for
logging.yml
and try to change the level of
root
logger if necessary