Git for data scientists - manage your code and data together
Project description
Website • Docs • Blog • Twitter • Chat (Community & Support) • Tutorial • Mailing List
Data Version Control or DVC helps you develop reproducible machine learning projects:
Version your data and models.
Connect them to your code and parameters to form a pipeline.
Modify data, code, or parameters and run your modified pipeline.
Iterate and track each experiment.
Share, compare, and reconstruct experiments.
Why DVC?
Store data and models (big) in your cloud storage, but keep their version info (small) in your Git repo.
Iterate fast with straightforward YAML pipelines. When you make changes, only run the steps impacted by those changes.
Track experiments in your local Git repo (no servers needed) and choose which to keep and share.
Compare any data, code, parameters, metrics, or plots and analyze however you want.
Reconstruct anyone’s experiment with a single command.
How DVC works
We encourage you to read our Get Started guide to better understand what DVC is and how it can fit your scenarios.
The easiest (but not perfect!) analogy to describe it: DVC is Git (or Git-LFS to be precise) & Makefiles made right and tailored specifically for ML and Data Science scenarios.
Git/Git-LFS part - DVC helps store and share data artifacts and models, connecting them with a Git repository.
Makefiles part - DVC describes how one data or model artifact was built from other data and code.
DVC usually runs along with Git. Git is used as usual to store and version code (including DVC meta-files). DVC helps to store data and model files seamlessly out of Git, while preserving almost the same user experience as if they were stored in Git itself. To store and share the data cache, DVC supports multiple remotes - any cloud (S3, Azure, Google Cloud, etc) or any on-premise network storage (via SSH, for example).
The DVC pipelines (computational graph) feature connects code and data together. It is possible to explicitly specify all steps required to produce a model: input dependencies including data, commands to run, and output information to be saved. See the quick start section below or the Get Started tutorial to learn more.
Quick start
Please read Get Started guide for a full version. Common workflow commands include:
Step |
Command |
---|---|
Track data |
$ git add train.py
$ dvc add images.zip
|
Connect code and data by commands |
$ dvc run -n prepare -d images.zip -o images/ unzip -q images.zip
$ dvc run -n train -d images/ -d train.py -o model.p python train.py
|
Make changes and reproduce |
$ vi train.py
$ dvc repro model.p.dvc
|
Share code |
$ git add .
$ git commit -m 'The baseline model'
$ git push
|
Share data and ML models |
$ dvc remote add myremote -d s3://mybucket/image_cnn
$ dvc push
|
Installation
There are four options to install DVC: pip, Homebrew, Conda (Anaconda) or an OS-specific package. Full instructions are available here.
Snap (Snapcraft/Linux)
snap install dvc --classic
This corresponds to the latest tagged release. Add --beta for the latest tagged release candidate, or --edge for the latest main version.
Choco (Chocolatey/Windows)
choco install dvc
Brew (Homebrew/Mac OS)
brew install dvc
Conda (Anaconda)
conda install -c conda-forge mamba # installs much faster than conda
mamba install -c conda-forge dvc
Depending on the remote storage type you plan to use to keep and share your data, you might need to install optional dependencies: dvc-s3, dvc-azure, dvc-gdrive, dvc-gs, dvc-oss, dvc-ssh.
pip (PyPI)
pip install dvc
Depending on the remote storage type you plan to use to keep and share your data, you might need to specify one of the optional dependencies: s3, gs, azure, oss, ssh. Or all to include them all. The command should look like this: pip install dvc[s3] (in this case AWS S3 dependencies such as boto3 will be installed automatically).
To install the development version, run:
pip install git+git://github.com/iterative/dvc
Package
Self-contained packages for Linux, Windows, and Mac are available. The latest version of the packages can be found on the GitHub releases page.
Ubuntu / Debian (deb)
sudo wget https://dvc.org/deb/dvc.list -O /etc/apt/sources.list.d/dvc.list
wget -qO - https://dvc.org/deb/iterative.asc | sudo apt-key add -
sudo apt update
sudo apt install dvc
Fedora / CentOS (rpm)
sudo wget https://dvc.org/rpm/dvc.repo -O /etc/yum.repos.d/dvc.repo
sudo rpm --import https://dvc.org/rpm/iterative.asc
sudo yum update
sudo yum install dvc
Contributing
Contributions are welcome! Please see our Contributing Guide for more details. Thanks to all our contributors!
Mailing List
Want to stay up to date? Want to help improve DVC by participating in our occasional polls? Subscribe to our mailing list. No spam, really low traffic.
Copyright
This project is distributed under the Apache license version 2.0 (see the LICENSE file in the project root).
By submitting a pull request to this project, you agree to license your contribution under the Apache license version 2.0 to this project.
Citation
Iterative, DVC: Data Version Control - Git for Data & Models (2020) DOI:10.5281/zenodo.012345.
Barrak, A., Eghan, E.E. and Adams, B. On the Co-evolution of ML Pipelines and Source Code - Empirical Study of DVC Projects , in Proceedings of the 28th IEEE International Conference on Software Analysis, Evolution, and Reengineering, SANER 2021. Hawaii, USA.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dvc-2.11.0.tar.gz
.
File metadata
- Download URL: dvc-2.11.0.tar.gz
- Upload date:
- Size: 501.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26f5ba2a89a94874a4cc5046835717f8122c6e9adcf7097f5ec93a3a816388a0 |
|
MD5 | 7d8632eb4cb1388be244d89189eb1222 |
|
BLAKE2b-256 | 43842b29a5ef7348221f0ad0ed175ca750b236e7805dace7e75455be1eca4cc2 |
File details
Details for the file dvc-2.11.0-py3-none-any.whl
.
File metadata
- Download URL: dvc-2.11.0-py3-none-any.whl
- Upload date:
- Size: 342.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fe9238724acadfaaf838b775fb92d2a79e35344328aff2d2258198678b2aacc |
|
MD5 | fcf863ac2e2241d074c85ddd3c1ab5d5 |
|
BLAKE2b-256 | bd623f8504a1e2d039a79b089238aba9e0686f85ebbeaea63414f33fa1665ca0 |