Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 751 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 751 Bytes

Tutorial: Automate Data Validation and Model Monitoring Pipelines with DVC and Evidently

DVC + Evidently

Create virtual environment

Create virtual environment named .venv and install python libraries

python3 -m venv .venv
source .venv/bin/activate
echo "export PYTHONPATH=$PWD" >> .venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install -r requirements.txt

Run pipelines

train

dvc repro pipelines/train/dvc.yaml

predict

dvc repro pipelines/predict/dvc.yaml

monitor

dvc repro pipelines/monitor/dvc.yaml

View reports

Enter directory reports/, open required period folder and launch HTML report in a browser.