-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Hparams: Allow users to load more Hparams if they are not all included in default. #6780
Hparams: Allow users to load more Hparams if they are not all included in default. #6780
Conversation
26e5e85
to
170284d
Compare
170284d
to
f968643
Compare
Instead of the way I was previously removing the flakiness.
<button mat-stroked-button (click)="loadAllColumnsClicked()"> | ||
Load all anyway | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div #columnList class="column-list"> |
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.
We may want to wrap the list of columns in a virtual scroll viewbox prior to launching the data project
https://material.angular.io/cdk/scrolling/overview#cdk-virtual-scroll-overview
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.
Thanks, added that suggestion to our list of tasks. We should at least play with it.
We limit the number of hparams retrieved and rendered in the Hparams plugin. Otherwise the plugin can become very slow and even crash. Unlike #6780, we do not provide an option for loading more in the Hparams plugin. We may provide this option later if there is demand. But generally we think 1000 should be enough, especially if the underlying hparams provider is sorting the results with "differs" fields first. 
…d in default. (tensorflow#6780) In tensorflow#6777 we limited the number of hparams we load by default. Now we add the option for the user to load all hparams in spite of the performance implications. OSS Light Mode:  OSS Dark Mode:  Internal Light Mode:  Internal Dark Mode: 
…low#6807) We limit the number of hparams retrieved and rendered in the Hparams plugin. Otherwise the plugin can become very slow and even crash. Unlike tensorflow#6780, we do not provide an option for loading more in the Hparams plugin. We may provide this option later if there is demand. But generally we think 1000 should be enough, especially if the underlying hparams provider is sorting the results with "differs" fields first. 
In #6777 we limited the number of hparams we load by default.
Now we add the option for the user to load all hparams in spite of the performance implications.
OSS Light Mode:

OSS Dark Mode:

Internal Light Mode:

Internal Dark Mode:
