-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ref: document `dvc exp clean` * review fixes
- Loading branch information
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# exp clean | ||
|
||
Cleanup DVC experiment temporary files. | ||
|
||
## Synopsis | ||
|
||
```usage | ||
usage: dvc exp clean [-h] [-q | -v] | ||
``` | ||
|
||
## Description | ||
|
||
Runs housekeeping tasks within the <abbr>DVC repository</abbr>, such as removing | ||
outdated internal experiments queue message files (to reduce disk space and | ||
improve performance). | ||
|
||
This is done automatically when running [queued experiments]. Running | ||
`dvc exp clean` manually should not be required for typical use cases, but it | ||
may be needed in the event that a queue worker unexpectedly crashed, or was | ||
forcefully killed by something other than DVC commands. | ||
|
||
[queued experiments]: | ||
/doc/user-guide/experiment-management/running-experiments#the-experiments-queue | ||
|
||
## Options | ||
|
||
- `-h`, `--help` - shows the help message and exit. | ||
|
||
- `-q`, `--quiet` - do not write anything to standard output. Exit with 0 if no | ||
problems arise, otherwise 1. | ||
|
||
- `-v`, `--verbose` - displays detailed tracing information from executing the | ||
`dvc exp clean` command. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters