Small edits (#1033)
Some checks are pending
CI / build (push) Waiting to run

This commit is contained in:
pollfly
2025-02-09 19:46:40 +02:00
committed by GitHub
parent e99e033b06
commit 79eff642ff
87 changed files with 104 additions and 104 deletions

View File

@@ -34,7 +34,7 @@ One is you can easily chain existing ClearML tasks together to create a single p
Let's say we have some functions that we already use to run ETL and another function that trains a model on the preprocessed data. We already have a main function too, that orchestrates when and how these other components should be run.
If we want to make this code into a pipeline, the first thing we have to do is to tell ClearML that these functions are supposed to become steps in our pipeline. We can do that by using a python decorator! For each function we want as a step, we can decorate it with `PipelineDecorator.component`.
If we want to make this code into a pipeline, the first thing we have to do is to tell ClearML that these functions are supposed to become steps in our pipeline. We can do that by using a Python decorator! For each function we want as a step, we can decorate it with `PipelineDecorator.component`.
The component call will fully automatically transform this function into a ClearML task, with all the benefits that come with that. It will also make it clear that this task will be part of a larger pipeline.