snippetbashTip
dvc — Data Version Control system for machine learning projects. Some subcommands such as `commit` have th
Viewed 0 times
commandclidvccontroldataforversionsystem
Problem
How to use the
dvc command: Data Version Control system for machine learning projects. Some subcommands such as commit have their own usage documentation. More information: <https://doc.dvc.org/command-reference>.Solution
dvc — Data Version Control system for machine learning projects. Some subcommands such as commit have their own usage documentation. More information: <https://doc.dvc.org/command-reference>.Initialize a new DVC project:
dvc initConfigure a remote storage location:
dvc remote add {{storage_name}} {{url}}Add one or more data files or directories to tracking:
dvc add {{path/to/file_or_directory}}Show project status:
dvc statusUpload tracked files to remote storage:
dvc pushDownload tracked files from remote storage:
dvc pullDisplay help:
dvc {{[-h|--help]}}Display version:
dvc --versionCode Snippets
Initialize a new DVC project
dvc initConfigure a remote storage location
dvc remote add {{storage_name}} {{url}}Add one or more data files or directories to tracking
dvc add {{path/to/file_or_directory}}Show project status
dvc statusUpload tracked files to remote storage
dvc pushContext
tldr-pages: common/dvc
Revisions (0)
No revisions yet.