Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start: bi-trail reorg #3455

Merged
merged 17 commits into from
Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 37 additions & 31 deletions content/docs/sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,43 +35,49 @@
},
"children": [
{
"slug": "data-and-model-versioning",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/versioning"
}
},
{
"slug": "data-and-model-access",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/accessing"
}
},
{
"slug": "data-pipelines",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/stages"
}
},
{
"label": "Metrics, Parameters, and Plots",
"slug": "metrics-parameters-plots",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/params-metrics-plots"
}
"slug": "data-management",
"label": "Data Management",
"source": "data-management/index.md",
"children": [
{
"label": "Data and Model Access",
"slug": "access",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/accessing"
}
},
{
"label": "Data Pipelines",
"slug": "pipelines",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/stages"
}
},
{
"label": "Metrics, Parameters, and Plots",
"slug": "metrics-parameters-plots",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/params-metrics-plots"
iesahin marked this conversation as resolved.
Show resolved Hide resolved
}
}
]
},
{
"slug": "experiments",
"label": "Experiments",
"source": "experiments/index.md",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/experiments"
}
},
{
"label": "Visualization with Plots",
"slug": "visualization",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/visualization"
}
},
"children": [
{
"label": "Visualization",
"slug": "visualization",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/get-started/params-metrics-plots"
iesahin marked this conversation as resolved.
Show resolved Hide resolved
}
}
]
}
]
},
Expand Down
12 changes: 10 additions & 2 deletions content/docs/start/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ $ git commit -m "Initialize DVC"

Now you're ready to DVC!

DVC's features can be grouped into functional components. We'll explore them one
by one in the next few pages:
DVC's features can be grouped into functional components. You can explore them
in two independent trails:

### Data Management Trail

- [**Data and model versioning**](/doc/start/data-and-model-versioning) (try
this next) is the base layer of DVC for large files, datasets, and machine
Expand All @@ -72,11 +74,17 @@ by one in the next few pages:
be attached to pipelines. These let you capture, navigate, and evaluate ML
projects without leaving Git. Think "Git for machine learning".

### Experiments Trail

- [**Experiments**](/doc/start/experiments) enable exploration, iteration, and
comparison across many ML experiments. Track your experiments with automatic
versioning and checkpoint logging. Compare differences in parameters, metrics,
code, and data. Apply, drop, roll back, resume, or share any experiment.

- [**Visualization**](/doc/start/experiments/visualization) compare experiment
results visually, track your plots and generate them with library
integrations.

**New!** Once you set up your DVC repository, you can also interact with it
using Iterative Studio, the online UI for DVC.
[Here's a demo](https://studio.iterative.ai/team/Iterative/views/example-get-started-zde16i6c4g)
Expand Down
4 changes: 4 additions & 0 deletions redirects-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
"^/doc/get-started(/.*)?$ /doc/start",
"^/doc/start/data-versioning$ /doc/start/data-and-model-versioning",
"^/doc/start/data-access$ /doc/start/data-and-model-access",
"^/doc/start/data-and-model-versioning(/.*)?$ /doc/start/data-management$1 302",
"^/doc/start/data-and-model-access(/.*)?$ /doc/start/data-management/access$1 302",
"^/doc/start/data-pipelines(/.*)?$ /doc/start/data-management/pipelines$1 302",
"^/doc/start/metrics-parameters-plots(/.*)?$ /doc/start/data-management/metrics-parameters-plots$1 302",
"^/doc/start/sharing-data-and-model-files$ /doc/start/data-and-model-versioning#storing-and-sharing 303",
Comment on lines +43 to 44
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated: I'm not sure why there are 302s and 303s in this file tbh. I think it should mostly be 302 except for a group near the top of utility redirects (e.g. data.dvc.org -> S3 bucket read)

"^/doc/tutorial(/.*)?$ /doc/start",
"^/doc/tutorials/get-started(/.*)?$ /doc/start",
Expand Down