HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dvc dag — Visualize the pipeline(s) defined in `dvc.yaml`. More information: <https://doc.dvc.org/command-refe

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandclidefineddvc dagdvcpipelinevisualize

Problem

How to use the dvc dag command: Visualize the pipeline(s) defined in dvc.yaml. More information: <https://doc.dvc.org/command-reference/dag>.

Solution

dvc dag — Visualize the pipeline(s) defined in dvc.yaml. More information: <https://doc.dvc.org/command-reference/dag>.

Visualize the entire pipeline:
dvc dag


Visualize the pipeline stages up to a specified target stage:
dvc dag {{target}}


Export the pipeline in the dot format:
dvc dag --dot > {{path/to/pipeline.dot}}

Code Snippets

Visualize the entire pipeline

dvc dag

Visualize the pipeline stages up to a specified target stage

dvc dag {{target}}

Export the pipeline in the dot format

dvc dag --dot > {{path/to/pipeline.dot}}

Context

tldr-pages: common/dvc dag

Revisions (0)

No revisions yet.