RTPT class to rename your processes giving information on who is launching the process, and the remaining time for it.
pip install rtpt
git clone
python setup.py install
fromrtptimportRTPTimportrandomimporttime# Create RTPT objectrtpt=RTPT(name_initials='QD', experiment_name='TestingRTPT', max_iterations=10)
# Start the RTPT trackingrtpt.start()
# Loop over all iterationsforepochinrange(10):
time.sleep(4)
# Perform a single experiment iterationloss=random.random()
# Update the RTPT (subtitle is optional)rtpt.step(subtitle=f"loss={loss:2.2f}")