An easy-to-use debug print tool for deep learning studies in python.
The built-in debugger is great, however, for some reason 🙃, we may still want to print them out for debugging purpose. For such scenarios, we would like it to have the following feats. (especially when running deep learning projects - where our monitoring/debugging variables are being updated within loops).
-
Context Info. We may like to display the invoking positions for these variables (to help us identify back each of them), including their file name, func name, and line number.
-
Different Color. We may like it to be clearly distinguishable from tons of normal printings within loops, such as displaying training loss. The default color is YELLOW now, which could be custmozed in future releases soon (full color-code can be found here).
-
Pass-Through Print. We may like to monitor things without breaking current code structure, i.e., print-and-return. Note: you can still simply
dprint()
them (just like print() in python) - it's compatible to both usecases 🤞.
#loss = loss1 + loss2
loss = loss1 + dprint(loss2)
- (Optional) Multiple Variables. We may not like to leave too much print() statement in our code - they look redundent - instead, we may like to display multiple variable within lines as less as possible (by passing them all as a dict).
Very easy 😇
- Installation
pip install pydprint
- Import
from pydprint import dprint
- Demo Usecases: demo.py (see some examples).