New Release! Git-backed Machine Learning Model Registry for all your model management needs.
Remove queued and completed tasks from the DVC Experiment task queue.
usage: dvc queue remove [-h] [-q | -v]
[--all] [--queued] [--success] [--failed]
[<task> ...]
positional arguments:
<task> Tasks in queue to remove.
Removes the specified queued or completed experiment tasks from the queue. For completed tasks, this will also remove any associated output logs.
Note that for successfully completed tasks, this command is not the same as
dvc exp remove
. dvc queue remove
does not remove any Git or DVC data
associated with a successful DVC experiment. It only removes the task queue
entry and any associated output logs for that task.
--all
- remove all (queued and completed) experiment tasks from the queue.
--queued
- remove all queued experiment tasks from the queue.
--success
- remove all successfully completed tasks (and associated output
logs) from the queue.
--failed
- remove all failed tasks (and associated output logs) from the
queue.
-h
, --help
- prints the usage/help message, and exit.
-q
, --quiet
- do not write anything to standard output.
-v
, --verbose
- displays detailed tracing information.