Start and Remove
After building your pipeline, you can start it. Starting the pipeline means using its functionality. You can either start it as a CLI app or choose to use our UI.
Start
This function allows you to run the pipeline and use the interface (CLI or UI). The prerequisite for it is that the pipeline has to be built.
Sub-commands:
–pipeline — Select the pipeline you want to start. This has to be one of the built models. To view built models, run
bojai list --built
.–stage — Select which stage you want to start. If you do not use it, the pipeline will start from the initialization stage. Available options include:
prepare — Run the model in the preparation stage and skip the initialization window.
train — Run the model in the training stage and skip the initialization and preparation windows.
deploy — Run the model in the deployment stage and skip the initialization, preparation, and training windows. Using this option means you will be deploying an untrained model.
–ui — Flag whether you want to use the UI interface instead of the CLI interface. If you don’t include it, the pipeline will run through the CLI stage.
Remove
This function allows you to delete a built pipeline. Once you call remove, you won’t be able to restore it and must build it again.
Sub-commands
- –pipeline — Select the pipeline you want to remove. This has to be one of the built models. To view built models, run
bojai list --built
.
Update a pipeline
If you are coding your own pipeline and want to run your updated version, you do not need to remove and rebuild. You can build directly. Check build page for more details.