Skip to content

Commit

Permalink
Add some example to it
Browse files Browse the repository at this point in the history
  • Loading branch information
karajan1001 committed Aug 19, 2021
1 parent 457eed6 commit 700a966
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions content/docs/command-reference/exp/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,48 @@ $ dvc exp list
master:
exp-e6c97
```

For those experiments in the queue, things are pretty similiar. Let us first
create some queued experiments.

```dvc
$ dvc exp run --queue -S train.min_split=64 --name split64
Queued experiment 'e41d5b4' for future execution.
$ dvc exp run --queue -S train.min_split=32 --name split32
Queued experiment '5751540' for future execution.
$ dvc exp run --queue -S train.min_split=16 --name split16
Queued experiment '8de9a6c' for future execution.
$ dvc exp run --queue -S train.min_split=128
Queued experiment 'dbca012' for future execution.
$ dvc exp show --include-params=train.min_split --no-pager
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓
┃ Experiment ┃ Created ┃ State ┃ avg_prec ┃ roc_auc ┃ train.min_split ┃
┑━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━┩
β”‚ workspace β”‚ - β”‚ - β”‚ 0.57553 β”‚ 0.94652 β”‚ 2 β”‚
β”‚ master β”‚ Aug 02, 2021 β”‚ - β”‚ 0.53252 β”‚ 0.9107 β”‚ 2 β”‚
β”‚ β”œβ”€β”€ dbca012 β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 128 β”‚
β”‚ β”œβ”€β”€ 8de9a6c [split16] β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 16 β”‚
β”‚ β”œβ”€β”€ 5751540 [split32] β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 32 β”‚
β”‚ └── e41d5b4 [split64] β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 64 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
$ dvc exp remove dbca012
$ dvc exp remove split16
$ dvc exp show --include-params=train.min_split --no-pager
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓
┃ Experiment ┃ Created ┃ State ┃ avg_prec ┃ roc_auc ┃ train.min_split ┃
┑━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━┩
β”‚ workspace β”‚ - β”‚ - β”‚ 0.57553 β”‚ 0.94652 β”‚ 2 β”‚
β”‚ master β”‚ Aug 02, 2021 β”‚ - β”‚ 0.53252 β”‚ 0.9107 β”‚ 2 β”‚
β”‚ β”œβ”€β”€ 5751540 [split32] β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 32 β”‚
β”‚ └── e41d5b4 [split64] β”‚ 04:57 PM β”‚ Queued β”‚ - β”‚ - β”‚ 64 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
$ dvc exp remove --queue
$ dvc exp show --include-params=train.min_split --no-pager
┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓
┃ Experiment ┃ Created ┃ avg_prec ┃ roc_auc ┃ train.min_split ┃
┑━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━━━━┩
β”‚ workspace β”‚ - β”‚ 0.57553 β”‚ 0.94652 β”‚ 2 β”‚
β”‚ master β”‚ Aug 02, 2021 β”‚ 0.53252 β”‚ 0.9107 β”‚ 2 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

0 comments on commit 700a966

Please sign in to comment.