Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 567 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 567 Bytes

MLOps

It contains tutorial of various MLOps algorithm. This will promarily focus on deployment. So, in this we will learn end-to-end ML lifecycle pipeline. Will update it as soon as I learn something new. Happy Learning.

INSTALLATION

// install virtualenv
$ python3 -m pip install --user virtualenv

// create environment
$ python3 -m venv myenv

// activate environment
$ source myenv/bin/activate

// install dependencies from requirements.txt
$ pip install -r requirements.txt

// deactivate environment
$ deactivate