namirinz / mlops-stock-prediction

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mlops-stock-prediction

Tools used in this project

Set up the environment

  1. Install Poetry
  2. Set up the environment:
make env 

Install dependencies

To install all dependencies for this project, run:

poetry install

To install a new package, run:

poetry add <package-name>

Version your data

To track changes to the "data" directory, type:

dvc add data

This command will create the "data.dvc" file, which contains a unique identifier and the location of the data directory in the file system.

To keep track of the data associated with a particular version, commit the "data.dvc" file to Git:

git add data.dvc
git commit -m "add data"

To push the data to remote storage, type:

dvc push 

Auto-generate API documentation

To auto-generate API document for your project, run:

make docs

About


Languages

Language:Python 82.7%Language:Makefile 17.3%