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:

  1. Optionally run bojai list --built to see a list of built models you can start.

  2. Run bojai start --pipeline your-pipeline-name to run the pipeline from the initialization stage.
    Or run bojai 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:

  1. Optionally run bojai list --built to see a list of built models you can start.

  2. Run bojai start --pipeline your-pipeline-name --ui to run the pipeline from the initialization stage.
    Or run bojai 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:

  1. Optionally run bojai list --built to see a list of built models you can delete.

  2. Run bojai remove --pipeline your-pipeline-name to delete the pipeline.

  3. Run bojai list --built to see if your deleted pipeline is removed.