-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exp show: --queued and --failed #7986
Comments
Need to coordinate with VS Code on these changes cc @mattseddon |
Related to iterative/vscode-dvc#1995 & iterative/vscode-dvc#1996. |
Given the discussion of |
@mattseddon I'm now working on this, but I found that there is still some data format required to be decided. In the current json result of
We need a new flag for it. what do you prefer
|
Do we need separate fields for each state, or are they all mutually exclusive and we should have a single |
All are OK for me but will give more trouble to those who are parsing the |
Is completed/failed a boolean result? Can there be a partial failure? If it is a boolean then I'm happy with |
For the error message, it could be gotten through the
and what do you think about using a single "status" field instead of three boolean ones? Because you might get a confused result with more than one true (of course it's a bug but it is still possible). |
The format that we expect for a record that is completely broken is:
Where the However, if we know what the
The second option is IMO more beneficial to users because they'd want to know which of the queued items have failed so that they can retry them. If we omit the param info and only show failed records they would have to reverse engineer/work out which ones have failed.
I would be fine to merge the |
It is more an execution failure instead of
Makes more sense.
Another choice is to keep both
and |
fix: iterative#7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown.
fix: iterative#7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown. 4. Add name support for failed exp
fix: iterative#7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown. 4. Add name support for failed exp
fix: iterative#7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown. 4. Add name support for failed exp
fix: iterative#7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown. 4. Add name support for failed exp 5. Add error msg to the `exp show` output
fix: #7986 1. Add two new flags `--hide-queued` and `--hide-failed` to `exp show` 2. Allow `exp show` to show failed experiments. 3. Add unit test for the failed experiments shown. 4. Add name support for failed exp 5. Add error msg to the `exp show` output
Originally posted by @dberenbaum in #7592 (comment)
The text was updated successfully, but these errors were encountered: