Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 1.12 KB

File metadata and controls

11 lines (6 loc) · 1.12 KB

Bootstrap from MLOpsPython repository

To use this existing project structure and scripts for your new ML project, you can quickly get started from the existing repository, bootstrap and create a template that works for your ML project. Bootstraping will prepare a similar directory structure for your project which includes renaming files and folders, deleting and cleaning up some directories and fixing imports and absolute path based on your project name. This will enable reusing various resources like pre-built pipelines and scripts for your new project.

To bootstrap from the existing MLOpsPython repository clone this repository, ensure Python is installed locally, and run bootstrap.py script as below

python bootstrap.py --d [dirpath] --n [projectname]

Where [dirpath] is the absolute path to the root of your directory where MLOps repo is cloned and [projectname] is the name of your ML project.

This article will also assist to use this code template for your own ML project.