How to use and delete pipelines
After you build the pipeline, you can start using it. This can be used for testing the pipeline or using it to actually process, train, and deploy models.
Use a pipeline through the CLI
To use a built model you can follow the steps below:
-
Optionally run
bojai list --builtto see a list of built models you can start. -
Run
bojai start --pipeline your-pipeline-nameto run the pipeline from the initialization stage.
Or runbojai start --pipeline your-pipeline-name --stage stage-nameto run the pipeline in one of the three stages (prepare, train, or deploy).
The CLI interface runs and you can use the pipeline. See CLI interface for more information about available options.
Use a pipeline through the UI interface
To use a built model through the UI, you can follow the steps below:
-
Optionally run
bojai list --builtto see a list of built models you can start. -
Run
bojai start --pipeline your-pipeline-name --uito run the pipeline from the initialization stage.
Or runbojai start --pipeline your-pipeline-name --stage stage-name --uito run the pipeline in one of the three stages (prepare, train, or deploy).
The UI interface runs and you can use the pipeline. See UI interface for more information about available options.
Delete pipeline
To delete a pipeline, you can follow the steps below:
-
Optionally run
bojai list --builtto see a list of built models you can delete. -
Run
bojai remove --pipeline your-pipeline-nameto delete the pipeline. -
Run
bojai list --builtto see if your deleted pipeline is removed.