Small edits (#658)

This commit is contained in:
pollfly
2023-08-27 10:23:06 +03:00
committed by GitHub
parent b98f716486
commit 6bd34ba260
4 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ example of a pipeline with concurrent steps.
ClearML supports multiple modes for pipeline execution:
* **Remote Mode** (default) - In this mode, the pipeline controller logic is executed through a designated queue, and all
the pipeline steps are launched remotely through their respective queues. Since each task is executed independently,
it can have control over its git repository (if needed), required python packages and specific container to be used.
it can have control over its git repository (if needed), required python packages, and the specific container to use.
* **Local Mode** - In this mode, the pipeline is executed locally, and the steps are executed as sub-processes. Each
subprocess uses the exact same Python environment as the main pipeline logic.
* **Debugging Mode** (for PipelineDecorator) - In this mode, the entire pipeline is executed locally, with the pipeline