You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the outputs on the right side of the sidebar exceed the size reserved for it in the template, the line wraps, and then the progress bar is redrawn at every step again.
There is a proposed fix for this in the library you use to draw the progress bar, but it would probably also be possible to work around it inside tensorflow by ensuring the name of the placeholder is padded so it is long enough to cover the expected size of its replacement.
1. Throttle render rate at 50 ms; previously it was 16 ms.
2. When metrics string is too long, cut it off to avoid constant
line wrappig.
3. Adaptively set the threshold for metrics string length based on
console width
Fixestensorflow/tfjs#1468
1. Throttle render rate at 50 ms; previously it was 16 ms.
2. When metrics string is too long, cut it off to avoid new lines being
created constantly
3. Adaptively set the threshold for metrics string length based on
console width
4. Avoid very long number strings (e.g., 0.0000000007) when
a metric has a very small positive value.
Fixestensorflow/tfjs#1468
TensorFlow.js version
1.0.2
Describe the problem or feature request
When the outputs on the right side of the sidebar exceed the size reserved for it in the template, the line wraps, and then the progress bar is redrawn at every step again.
There is a proposed fix for this in the library you use to draw the progress bar, but it would probably also be possible to work around it inside tensorflow by ensuring the name of the placeholder is padded so it is long enough to cover the expected size of its replacement.
visionmedia/node-progress#190
Code to reproduce the bug / link to feature request
The text was updated successfully, but these errors were encountered: