Skip to content

felifri/rtpt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Remaining-Time-To-Process (RTPT)

RTPT class to rename your processes giving information on who is launching the process, and the remaining time for it. Created to be used with our AIML IRON table.

Example

# Create RTPT object
rtpt = RTPT(name_initials='KK', experiment_name='ScriptName', max_iterations=100)

# Start the RTPT tracking
rtpt.start()

# Loop over all iterations
for epoch in range(100):

  # Perform a single experiment iteration
  loss = iteration()
  
  # Update the RTPT (subtitle is optional)
  rtpt.step(subtitle=f"loss={loss:2.2f}")

About

Remaining Time to Process Title

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%