How to install BojAI
Installation
Install from source:
git clone https://github.com/bojai-org/bojai.git
cd bojai
pip install .
Getting Started
You can use BojAI in two main ways:
1. Use a Built-In Model
Start a full ML pipeline from UI or CLI without writing any code:
- 
Run bojai list --pipelinesto see what pipelines are available. To learn more about each pipeline, visit its page on our docs site.
- 
Run bojai build --pipeline chosen-pipeline-name
- 
Run bojai start --pipeline built-pipeline-nameto use the pipeline in CLI mode, orbojai start --pipeline built-pipeline-name --uito use it in UI mode.
2. Create Your Own Custom Model or Pipeline
- 
Run bojai create --pipeline give-your-pipeline-a-name --directory where/you/want/to/saveto copy files into a folder and save it in the specified directory.
- 
This folder contains files where you can implement your data processing logic, model, training and eval loop, and usage logic. Click here for detailed steps. 
- 
Run bojai build --pipeline give-your-pipeline-a-name --directory path/to/directory/with/implementation
- 
Run bojai start --pipeline built-pipeline-nameto use the pipeline in CLI mode, orbojai start --pipeline built-pipeline-name --uito use it in UI mode.