Skip to content
Closed
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
1 change: 0 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"proseWrap": "always"
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

("preserve" is the default value anyway.)

}
3 changes: 1 addition & 2 deletions content/blog/2019-12-14-november-19-dvc-heartbeat.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ descriptionLong: |
journey. The others are a collection of exciting stories and ideas centered
around ML best practices and workflow.
picture: 2019-12-14/post-image.jpeg
pictureComment:
How cool is this handmade swag from our community? We were in tears!
pictureComment: How cool is this handmade swag from our community? We were in tears!
author: svetlana_grinchenko
commentsUrl: https://discuss.dvc.org/t/november-19-dvc-heartbeat/284
tags:
Expand Down
3 changes: 1 addition & 2 deletions content/blog/2020-02-10-february-20-dvc-heartbeat.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ descriptionLong: |
projects by our users and big ideas about best practices in ML and data
science.
picture: 2020-02-10/heartbeat_black.png
pictureComment:
Just in time for Valentine's day, here's a seasonally-relevant DVC pipeline.
pictureComment: Just in time for Valentine's day, here's a seasonally-relevant DVC pipeline.
author: elle_obrien
commentsUrl: https://discuss.dvc.org/t/dvc-heartbeat-feburary-20/318
tags:
Expand Down
3 changes: 1 addition & 2 deletions content/blog/2020-02-17-a-public-reddit-dataset.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title:
AITA for making this? A public dataset of Reddit posts about moral dilemmas
title: AITA for making this? A public dataset of Reddit posts about moral dilemmas
date: 2020-02-17
description: |
Releasing an open natural language dataset based on r/AmItheAsshole.
Expand Down
12 changes: 5 additions & 7 deletions content/blog/2020-04-06-april-20-dvc-heartbeat.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ descriptionLong: |
projects by our users and big ideas about best practices in ML and data
science.
picture: 2020-04-06/april_header.png
pictureComment:
A view from [Barrancas del
Cobre](https://en.wikipedia.org/wiki/Copper_Canyon), shot by Jorge Orpinel
Pérez. Jorge has mastered the art of working on DVC remotely.
author: elle_obrien
commentsUrl: https://discuss.dvc.org/t/april-20-heartbeat/347
tags:
pictureComment: A view from
[Barrancas del Cobre](https://en.wikipedia.org/wiki/Copper_Canyon), shot by
Jorge Orpinel Pérez. Jorge has mastered the art of working on DVC remotely.
author: elle_obrien commentsUrl:
https://discuss.dvc.org/t/april-20-heartbeat/347 tags:
- Heartbeat
- Google Drive
- MLOps
Expand Down
3 changes: 1 addition & 2 deletions content/blog/2020-10-12-october-20-dvc-heartbeat.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ descriptionLong: |
new video docs on our YouTube channel,
and the best tutorials from our community.
picture: 2020-10-12/cover.png
pictureComment:
Double DeeVee! One of these birds is on a layover before heading to Germany.
pictureComment: Double DeeVee! One of these birds is on a layover before heading to Germany.
author: elle_obrien
commentsUrl: https://discuss.dvc.org/t/october-20-heartbeat/527
tags:
Expand Down
3 changes: 1 addition & 2 deletions content/docs/cml/cml-with-dvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ Note that `AWS_SESSION_TOKEN` is optional.

```yaml
env:
AZURE_STORAGE_CONNECTION_STRING:
${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
AZURE_STORAGE_CONTAINER_NAME: ${{ secrets.AZURE_STORAGE_CONTAINER_NAME }}
```

Expand Down
3 changes: 1 addition & 2 deletions content/docs/cml/self-hosted-runners.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ deploy-gce:
shell: bash
env:
repo_token: ${{ secrets.REPO_TOKEN }}
GOOGLE_APPLICATION_CREDENTIALS_DATA:
${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_DATA }}
GOOGLE_APPLICATION_CREDENTIALS_DATA: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_DATA }}
run: |
echo "Deploying..."

Expand Down
4 changes: 2 additions & 2 deletions content/docs/user-guide/dvc-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ stages:
metrics:
- performance.json
training:
desc: Training stage description
desc: Training stage description blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Long line in code block

cmd: python train.py
deps:
- train.py
Expand All @@ -161,7 +161,7 @@ stages:

`dvc.yaml` files consists of a group of `stages` with names provided explicitly
by the user with the `--name` (`-n`) option of `dvc run`. Each stage can contain
the following fields:
the following fields blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah:
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Long line in md


- `cmd` (always present): Executable command defined in this stage
- `wdir`: Working directory for the stage command to run in (relative to the
Expand Down