How to suppress trainer from printing directly to console?

Hi @AditMeh

These prints come from the user code in LightningModule. Have a look at the implementation of LightningModule, in the mehod validation_step(), and remove the print statements. This can’t be controlled by a a verbosity level, since this is a direct print statement in your code (or your probably running someone else’s code given the question :))

Hope this helps.