Skip to content

Commit

Permalink
Completed missing further reading links (Fix #2171)
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Feb 11, 2021
1 parent a11aa6f commit c228b9a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
6 changes: 6 additions & 0 deletions content/docs/user-guide/concepts/data-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ In DVC, pipeline stages and commands, their data I/O, interdependencies, and
results (intermediate or final) are specified in `dvc.yaml`, which can be
written manually or built using `dvc run`. This allows DVC to restore one or
more pipelines later. (See `dvc repro`)

## Further Reading

- [Data Pipelines](/doc/start/data-pipelines.md) in Get Started
- `dvc run` command reference
- `dvc repro` command reference
4 changes: 4 additions & 0 deletions content/docs/user-guide/concepts/dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ this case DVC runs the stage again when running the pipeline.
A dependency can be internal or external. Internal dependencies are found within
the <abbr>workspace</abbr> and <abbr>external dependencies</abbr> are in other
locations like <abbr>remotes</abbr>.

## Further Reading

- [Experiments](/doc/start/experiments.md)
7 changes: 7 additions & 0 deletions content/docs/user-guide/concepts/dvc-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,10 @@ DVC can cache entire directories as a single unit similar to files. A `.dir`
file for each tracked directory is created that lists names and hash values of
files in the directory. This eliminates the need to create corresponding `*.dvc`
files for each file in a directory, which can contain thousands of files.

## Further Reading

- [Internal Files](/doc/user-guide/project-structure/internal-files.md) in
User's Guide
- [Shared Development Server](/doc/use-cases/shared-development-server.md) in
Use Cases
14 changes: 9 additions & 5 deletions content/docs/user-guide/concepts/stage.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ tooltip: >-
# Stage

A stage is a single unit of execution in a <abbr>pipeline</abbr> that takes some
input and produces an output. A stage is defined by its
input and produces some <abbr>output</abbr>. A stage is defined by its
<abbr>dependencies</abbr>, its command and its <abbr>outputs</abbr>.

A stage may have multiple dependencies, multiple commands and multiple outputs.
A stage can also have <abbr>parameter dependencies</abbr> to represent model
hyperparameters and similar changes during execution. See `dvc run` for defining
a stage.
Stages that depend on other stages can be invalidated by the change in their
dependencies. A stage may have multiple dependencies, multiple commands and
multiple outputs. A stage can also have <abbr>parameter</abbr> dependencies to
represent model hyperparameters and similar changes during execution.

A stage may also represent an <abbr>import</abbr> from outside sources.

## Further Reading

- `dvc run` command reference

0 comments on commit c228b9a

Please sign in to comment.