-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
product: VSCodeIntegration with VSCode extensionIntegration with VSCode extension
Description
In the VS Code extension we recently added in a feature to our experiments table which highlights params and metrics which have changed with respect to the previous commit.
Example (example-dvc-experiments)
Given:
dvc params diff --show-json={"params.yaml": {"train.epochs": {"old": 10, "new": 11, "diff": 1}}}dvc metrics diff --show-json={}
Then we will show:
The current cli implementation means that we now have to run 3 commands to get the required data for our table. These are:
dvc exp show --show-jsondvc params diff --show-jsondvc metrics diff --show-json
We are still running into repo locks when trying to run any of the above commands. Also, having to run all three is slower.
Ideally I'd like to include the output of 2 & 3 within the workspace dict of 1 but open to other suggestions.
Note: If we pushed this data into exp show then we would also be able to highlight the same records in the cli table.
Related issues:
Metadata
Metadata
Assignees
Labels
product: VSCodeIntegration with VSCode extensionIntegration with VSCode extension
