Skip to content

Commit

Permalink
guide: Pipe edits
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Aug 26, 2022
1 parent 75340be commit dc16807
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
14 changes: 9 additions & 5 deletions content/docs/command-reference/move.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,15 @@ model file:
$ mv keras.h5 model.h5
```

> Note that, often the output of a stage is a dependency in another stage,
> creating a [dependency graph]. In this case, you may want to also update the
> `path` in the `deps` field of `dvc.yaml`.
<admon type="info">

Often the output of a stage is a dependency in another stage, creating a
[dependency graph]. In this case, you may want to also update the `path` in the
`deps` field of `dvc.yaml`.

[dependency graph]: /doc/user-guide/data-pipelines/defining-pipelines

</admon>

Finally, we run `dvc commit` with the `-f` option to force save the changes to
<abbr>cache</abbr>:
Expand All @@ -98,8 +104,6 @@ Finally, we run `dvc commit` with the `-f` option to force save the changes to
$ dvc commit -f
```

[dependency graph]: /doc/user-guide/data-pipelines/defining-pipelines

## Options

- `-h`, `--help` - prints the usage/help message, and exit.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/user-guide/basic-concepts/dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ tooltip: >-
A file or directory (possibly tracked by DVC) recorded in the `deps` section
of a stage (in `dvc.yaml`) or `.dvc` file file. Stages are invalidated
(considered outdated) when any of their dependencies change. See `dvc stage
add`, `dvc repro`, among others. See also `dvc params`.
add`, `dvc params`, `dvc repro`, among others.
---
3 changes: 2 additions & 1 deletion content/docs/user-guide/data-pipelines/defining-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ We call this file-based definition _codification_ (YAML format in our case). It
has the added benefit of allowing you to develop pipelines on standard Git
workflows ([GitOps]).
[gitops]: /doc/use-cases/versioning-data-and-model-files
</admon>
Stages usually take some data and run some code, producing an output (e.g. an ML
model). The pipeline is formed by making them interdependent, meaning that the
output of a stage becomes the input of another, and so on. Technically, this is
called a _dependency graph_ (DAG).
[gitops]: /doc/use-cases/versioning-data-and-model-files
[data management]: /doc/start/data-management
[metrics]: /doc/command-reference/metrics
[plots]: /doc/user-guide/visualizing-plots
Expand Down

0 comments on commit dc16807

Please sign in to comment.