-
Notifications
You must be signed in to change notification settings - Fork 1.7k
HParams: Start showing hparams in runs table based on the enableHparamsInTimeSeries flag #6317
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
Conversation
## Motivation for features / changes As part of the effort to surface hparams data in the time series dashboard we need to start actually fetching it. The logic existed internally but for some reason was not previously available in OSS. ## Technical description of changes I just copied the internal code to the oss implementation and made a few small adjustments to imports ## Screenshots of UI changes None ## Detailed steps to verify changes work correctly (as executed by you) Tests should pass Patch #6317, enable the feature flag, and ensure the hparams appear in the runs table ## Alternate designs / implementations considered Make a more detailed stub?
23e6d05 to
66d468a
Compare
| }); | ||
|
|
||
| it('renders', () => { | ||
| store.overrideSelector(getEnableHparamsInTimeSeries, 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.
Not a big deal since these are the only 2 tests but, this should probably be in the beforeEach.
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.
Since this is not always the same I would actually prefer to keep it overridden here for now.
## Motivation for features / changes #6317 broke the internal sync Googlers see (cl/524838273) This should fix it Googlers see cl/524852584
…w#6318) ## Motivation for features / changes As part of the effort to surface hparams data in the time series dashboard we need to start actually fetching it. The logic existed internally but for some reason was not previously available in OSS. ## Technical description of changes I just copied the internal code to the oss implementation and made a few small adjustments to imports ## Screenshots of UI changes None ## Detailed steps to verify changes work correctly (as executed by you) Tests should pass Patch tensorflow#6317, enable the feature flag, and ensure the hparams appear in the runs table ## Alternate designs / implementations considered Make a more detailed stub?
…msInTimeSeries flag (tensorflow#6317) Nothing will be displayed until ~tensorflow#6318~ is merged ## Motivation for features / changes We are working on surfacing hparam data in the time series dashboard. As part of this effort we would like to show the value of hparams in the runs table. The runs table already has partial support for this but it is currently disabled. I am enabling the columns based on the feature flag I added in tensorflow#6308. Note that you will not see anything in OSS until we fix the call to session_groups ## Technical description of changes I added a new selector to get the feature flag, then modified the metrics_container to read the value of the flag ## Screenshots of UI changes Disabled  Enabled  ## Detailed steps to verify changes work correctly (as executed by you) ## Alternate designs / implementations considered
## Motivation for features / changes tensorflow#6317 broke the internal sync Googlers see (cl/524838273) This should fix it Googlers see cl/524852584
Nothing will be displayed until
#6318is mergedMotivation for features / changes
We are working on surfacing hparam data in the time series dashboard. As part of this effort we would like to show the value of hparams in the runs table. The runs table already has partial support for this but it is currently disabled.
I am enabling the columns based on the feature flag I added in #6308.
Note that you will not see anything in OSS until we fix the call to session_groups
Technical description of changes
I added a new selector to get the feature flag, then modified the metrics_container to read the value of the flag
Screenshots of UI changes
Disabled

Enabled

Detailed steps to verify changes work correctly (as executed by you)
Alternate designs / implementations considered