https://kedro.org/ logo
#questions
Title
# questions
a

Ankar Yadav

11/22/2022, 11:49 AM
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

datajoely

11/22/2022, 11:49 AM
So I think you’d have to add the logging yourself, what are you looking to do?
a

Ankar Yadav

11/22/2022, 11:50 AM
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

datajoely

11/22/2022, 11:55 AM
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

Ankar Yadav

11/22/2022, 11:58 AM
Thanks, although I have been facing this issue with other libraries as well, some of the logs arent printed in console
n

Nok Lam Chan

11/22/2022, 9:45 PM
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
8 Views