Add pipeline progress (#285)

This commit is contained in:
pollfly
2022-07-07 11:41:04 +03:00
committed by GitHub
parent e06ea55078
commit 9fb6b16e23
2 changed files with 6 additions and 1 deletions

View File

@@ -83,6 +83,11 @@ Each pipeline must be assigned a version number to help track the evolution of y
If you pass `auto_version_bump=True` when instantiating a PipelineController, the pipelines version automatically bumps up
if there is a change in the pipeline code. If there is no change, the pipeline retains its version number.
### Tracking Pipeline Progress
ClearML automatically tracks a pipelines progress percentage: the number of pipeline steps completed out of the total
number of steps. For example, if a pipeline consists of 4 steps, after the first step completes, ClearML automatically
sets its progress value to 25. Once a pipeline has started to run but is yet to successfully finish, , the WebApp will
show the pipelines progress indication in the pipeline runs table, next to the runs status.
## Examples