You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paddle will print debug information when calling inferring function every time.
Debug information shouldn't be printed when doing prediction batch by batch.
For example
[INFO 2017-05-04 14:43:48,667 networks.py:1472] The input order is [firstw, secondw, thirdw, fourthw]
[INFO 2017-05-04 14:43:48,668 networks.py:1478] The output order is [mixed_0]
And I have found how to stop the printing action. Just comment line 1472, 1477 and 1478 in file trainer_config_helpers/networks.py
logger.info("".join(["The input order is [", ", ".join(final_inputs), "]"]))
logger.info("".join(
["The output order is [", ", ".join(final_outputs), "]"]))