Skip to content

odiak/progress-monitor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Progress Monitor

This is a simple tool that visualize progress of any program on browser.

Example

How to use

# Install
npm install -g @odiak/progress-monitor

# Execute with pipe
your-program | progress-monitor

# Open printed URL on your browser to see progress

All you need to do is let your program to print JSON in one line on each step of process.

Format of JSON to output is here and here is its example below (they're pretty printed, but actual JSON must be one-line):

{
  "variant": "experiment 1",
  "metric": "error",
  "value": { "test": 0.0321, "train": 0.0188 },
  "epoch": 11,
  "n_epochs": 400
}
{
  "variant": "experiment 1",
  "metric": "time",
  "value": 0.313,
  "epoch": 11,
  "n_epochs": 400
}

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published