-
Notifications
You must be signed in to change notification settings - Fork 356
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
fix: use selected checkpoints when registering #8739
Conversation
✅ Deploy Preview for determined-ui ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #8739 +/- ##
==========================================
- Coverage 47.28% 42.13% -5.15%
==========================================
Files 1045 728 -317
Lines 166788 128185 -38603
Branches 2246 2246
==========================================
- Hits 78860 54012 -24848
+ Misses 87770 74015 -13755
Partials 158 158
Flags with carried forward coverage won't be shown. Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, thanks for fixing this!
Can confirm multiple checkpoints are registering properly in the selected model registry.
@@ -121,7 +121,7 @@ const RegisterCheckpointModal: React.FC<ModalProps> = ({ | |||
} catch (e) { | |||
handleError(e, { | |||
publicSubject: `Unable to register ${pluralizer(checkpoints.length, 'checkpoint')}.`, | |||
silent: true, | |||
silent: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder why this was ever set to true
...
(cherry picked from commit 9f06d35)
Description
We will attempt to register all of the checkpoints on a page for certain views. This PR will use only the selected checkpoints.
Test Plan
Launch an experiment like
det e create ./examples/tutorials/core_api/2_checkpoints.yaml ./examples/tutorials/core_api/
.On the experiment checkpoint page click on the three dots icon (far right) to register. Make sure experiment registers successfully and that you can change the "Version Name".
Next select multiple checkpoints and perform a bulk action register for two checkpoints.
Then verify the checkpoints are correctly registered in the model registry page.
Commentary (optional)
Checklist
docs/release-notes/
.See Release Note for details.
Ticket
WEB-1948