SebChw / Actually-Robust-Training

Actually Robust Training - Tool Inspired by Andrej Karpathy "Recipe for training neural networks". It allows you to decompose your Deep Learning pipeline into modular and insightful "Steps". Additionally it has many features for testing and debugging neural nets.
MIT License
44 stars 0 forks source link

Allow selection of where logs should by printed #180

Closed SebChw closed 1 year ago

SebChw commented 1 year ago

Currently art_logger outputs to file and stdout and we don't have controll over this. In result sometime we print exceptions twice to the stout

trebacz626 commented 1 year ago

Add loguru flag print_stdout make it false by default for logger.exception

kordc commented 1 year ago

192