Introduction to Data Versioning with DVC
Ravi Bhadauria
Machine Learning Engineer
.git
folder)$ git init
$ git add code.py
$ git commit -m "adding first file"
$ dvc init
$ dvc add data/mydata.csv
$ dvc commit
$ git push
$ git pull
$ git clone \
https://github.com/username/repository-name.git
$ dvc push
$ dvc pull
$ dvc get \
https://github.com/username/repo-name model.pkl
Introduction to Data Versioning with DVC