Skip to content

Commit 13bb820

Browse files
authored
rearrange studio links (#5368)
* rearrange studio links * remove unused alert component * drop gatsby-source-rss-feed
1 parent 7dfc12b commit 13bb820

File tree

26 files changed

+51
-170
lines changed

26 files changed

+51
-170
lines changed

content/docs/command-reference/exp/push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ to see experiments in the remote.
4141
This command will also try to `dvc push` all <abbr>cached</abbr> data associated
4242
with the experiments to [remote storage], unless `--no-cache` is used.
4343

44-
If the [DVC Studio](https://studio.datachain.ai)
44+
If the DVC Studio
4545
[access token](/doc/studio/user-guide/experiments/live-metrics-and-plots#set-up-an-access-token)
4646
is set, DVC will notify DVC Studio about new experiments, and display a DVC
4747
Studio project URL to view experiments.

content/docs/command-reference/studio/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# studio
22

3-
A set of commands to authenticate DVC with [Studio](https://studio.datachain.ai)
4-
and save a
3+
A set of commands to authenticate DVC with Studio and save a
54
[client access token](/doc/studio/user-guide/account-management#client-access-tokens)
65
to global [DVC configuration]: [login](/doc/command-reference/studio/login),
76
[logout](/doc/command-reference/studio/logout),

content/docs/dvclive/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ See `Live.next_step()`.
120120
Under the hood, `Live.next_step()` calls `Live.make_summary()`,
121121
`Live.make_dvcyaml()`, and `Live.make_report()`.
122122

123-
When [access is enabled], updates will be sent to [DVC Studio].
123+
When [access is enabled], updates will be sent to DVC Studio.
124124

125125
If you want to decouple the `step` update from the rest of the calls, you can
126126
manually modify the `Live.step` property and call `Live.make_summary()` /
@@ -172,4 +172,3 @@ parametrize your code. See how to [setup a pipeline] to work with DVCLive.
172172
[run experiments]: /doc/user-guide/experiment-management/running-experiments
173173
[setup a pipeline]: /doc/dvclive/how-it-works#setup-to-run-with-dvc
174174
[access is enabled]: /doc/start/experiments/experiment-tracking#sharing
175-
[dvc studio]: https://studio.datachain.ai

content/docs/dvclive/live/log_image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ with Live() as live:
9292
live.next_step()
9393
```
9494

95-
In [DVC Studio](https://studio.datachain.ai/) and the
95+
In DVC Studio and the
9696
[DVC Extension for VSCode](https://marketplace.visualstudio.com/items?itemName=Iterative.dvc),
9797
folders following this pattern will be rendered using an image slider:
9898

content/docs/dvclive/ml-frameworks/pytorch-lightning.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ checkpointing at all as described in the
9393
Use `log_model` to save the checkpoints (it will use `Live.log_artifact()`
9494
internally to save those). At the end of training, DVCLive will copy the
9595
[`best_model_path`][`ModelCheckpoint`] to the `dvclive/artifacts` directory and
96-
annotate it with name `best` (for example, to be consumed in [DVC Studio]
96+
annotate it with name `best` (for example, to be consumed in DVC Studio
9797
<abbr>model registry</abbr> or automation scenarios).
9898

9999
- Save updates to the checkpoints directory at the end of training:
@@ -188,4 +188,3 @@ dvclive/metrics/train/epoch/metric.tsv
188188
[`live`]: /doc/dvclive/live
189189
[`ModelCheckpoint`]:
190190
https://lightning.ai/docs/pytorch/stable/api/lightning.pytorch.callbacks.ModelCheckpoint.html
191-
[DVC Studio]: https://studio.datachain.ai

content/docs/start/experiments/experiment-tracking.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ want to share results with others or back them up. Optionally follow this
131131
section to share, or skip to the next section if you want to start locally.
132132

133133
DVC tracks the code and metadata for each experiment in Git. If you have a Git
134-
remote (for example, GitHub) where you `git push`, go to
135-
[DVC Studio](https://studio.datachain.ai), configure your Git provider, and
134+
remote (for example, GitHub) where you `git push`, go to DVC Studio, configure
135+
your Git provider, and
136136
[add your Git repository as a project](/doc/studio/user-guide/experiments/create-a-project).
137137

138138
Next, you can login to Studio from the command line:
@@ -260,4 +260,3 @@ Learn more about
260260

261261
[dvclive]: /doc/dvclive
262262
[shared]: /doc/user-guide/experiment-management/sharing-experiments
263-
[dvc studio]: https://studio.datachain.ai

content/docs/start/model-registry/manage-models.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description:
77

88
# Get Started: Manage models
99

10-
In this guide, we will be using [DVC Studio](https://studio.datachain.ai) to
11-
manage our model registry. You can check out our
10+
In this guide, we will be using DVC Studio to manage our model registry. You can
11+
check out our
1212
[example model](https://studio.datachain.ai/team/Iterative/models/b3P4bcYIrGYdzyjqzsf9Xw==/pool-segmentation/v1.0.0)
1313
in DVC Studio to see what it will look like once we finish all the steps in this
1414
guide.
@@ -17,8 +17,8 @@ guide.
1717

1818
To perform the model registry actions in this guide, follow
1919
[these steps](/doc/studio/user-guide/experiments/create-a-project#connect-to-a-git-repository-and-add-a-project)
20-
to sign in to [DVC Studio](https://studio.datachain.ai), connect it to your Git
21-
account and add your repository as a DVC Studio project.
20+
to sign in to DVC Studio, connect it to your Git account and add your repository
21+
as a DVC Studio project.
2222

2323
</admon>
2424

content/docs/studio/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DVC Studio
22

3-
[DVC Studio](https://studio.datachain.ai/) is a web application that enables
4-
Machine Learning teams to seamlessly
3+
DVC Studio is a web application that enables Machine Learning teams to
4+
seamlessly
55

66
- [Run and track experiments](/doc/use-cases/experiment-tracking)
77
- [Manage model lifecycle](/doc/use-cases/model-registry)
@@ -11,9 +11,8 @@ It works on top of [DVC](https://dvc.org/) and [Git](https://git-scm.com/),
1111
maintaining Git as the single-source-of-truth for your data, experiments and
1212
models.
1313

14-
Sign in to [DVC Studio](https://studio.datachain.ai/) using your GitHub.com,
15-
GitLab.com, or Bitbucket.org account, or with your email address. Explore the
16-
demo projects and models, and
14+
Sign in to DVC Studio using your GitHub.com, GitLab.com, or Bitbucket.org
15+
account, or with your email address. Explore the demo projects and models, and
1716
[let us know](/doc/studio/user-guide/troubleshooting#support) if you need any
1817
help getting started.
1918

content/docs/studio/user-guide/account-management/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ granting full access to your Studio account.
153153
The available scopes are:
154154

155155
- `Experiment operations` - DVC uses this scope to share [live experiments] and
156-
to notify [Studio](https://studio.datachain.ai/) about [pushed experiments].
156+
to notify Studio about [pushed experiments].
157157
- `Dataset operations` - [Coming soon](https://cloud.dvc.ai).
158158
- `Model registry operations` - like downloading model using
159159
`dvc artifacts get`.

content/docs/studio/user-guide/experiments/create-a-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ In this section, you will learn how to:
1010

1111
To add a new project, follow these steps.
1212

13-
1. Sign in to [DVC Studio](https://studio.datachain.ai/) using your GitHub.com,
14-
GitLab.com, or Bitbucket.org account, or with your email address.
13+
1. Sign in to DVC Studio using your GitHub.com, GitLab.com, or Bitbucket.org
14+
account, or with your email address.
1515

1616
2. Click on `Add a Project`. All the organizations that you have access to will
1717
be listed.

0 commit comments

Comments
 (0)