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 --built
to see a list of built models you can start.Run
bojai start --pipeline your-pipeline-name
to run the pipeline from the initialization stage.
Or runbojai start --pipeline your-pipeline-name --stage stage-name
to 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 --built
to see a list of built models you can start.Run
bojai start --pipeline your-pipeline-name --ui
to run the pipeline from the initialization stage.
Or runbojai start --pipeline your-pipeline-name --stage stage-name --ui
to 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 --built
to see a list of built models you can delete.Run
bojai remove --pipeline your-pipeline-name
to delete the pipeline.Run
bojai list --built
to see if your deleted pipeline is removed.