Skip to content

Commit 6b9c600

Browse files
committed
Revert Beholder FPS slider to allow setting to 0 (#1079)
This restores the 0 value minimum setting of the FPS slider, which is a documented Beholder feature that allows "pausing" the video generation. It also adds logic to the tf-beholder-video and tf-beholder-info elements so that they don't send any XHRs when the FPS value is set to 0.
1 parent b22d92e commit 6b9c600

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

tensorboard/plugins/beholder/tf_beholder_dashboard/tf-beholder-dashboard.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
value="{{_FPS}}"
148148
type="number"
149149
step="1"
150-
min="1"
150+
min="0"
151151
max="30"
152152
pin="true"
153153
disabled="[[_controls_disabled]]">
@@ -213,7 +213,7 @@ <h3>No Beholder data was found.</h3>
213213
</template>
214214

215215
<template is="dom-if" if="[[_is_active]]">
216-
<tf-beholder-video id="video"></tf-beholder-video>
216+
<tf-beholder-video id="video" fps="[[_FPS]]"></tf-beholder-video>
217217

218218
<template is="dom-if" if="[[_valuesNotFrame(_values)]]">
219219
<tf-beholder-info

tensorboard/plugins/beholder/tf_beholder_dashboard/tf-beholder-info.html

+8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
fps: { // Not actually FPS!
5858
type: Number,
5959
value: 10,
60+
observer: '_fpsChanged',
6061
},
6162

6263
xhrTimeout: {
@@ -124,6 +125,13 @@
124125
}
125126
},
126127

128+
_fpsChanged(newValue, oldValue) {
129+
if (newValue == 0) {
130+
this._clear();
131+
} else if (oldValue == 0) {
132+
this._load();
133+
}
134+
},
127135
});
128136
})();
129137
</script>

tensorboard/plugins/beholder/tf_beholder_dashboard/tf-beholder-video.html

+15-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@
4444
Polymer({
4545
is: "tf-beholder-video",
4646
properties: {
47+
// Only used for determining ping frequency.
48+
fps: {
49+
type: Number,
50+
value: 10,
51+
observer: '_fpsChanged',
52+
},
53+
4754
pingSleep: {
4855
type: Number,
4956
value: 1000,
@@ -90,7 +97,7 @@
9097
const response = JSON.parse(this._xhr.responseText);
9198
this._onPing(response['status'] == 'alive', this.pingSleep);
9299
return;
93-
}
100+
}
94101
this._onPing(false, this.pingSleep);
95102
},
96103

@@ -115,6 +122,13 @@
115122
}
116123
},
117124

125+
_fpsChanged(newValue, oldValue) {
126+
if (newValue == 0) {
127+
this._clear();
128+
} else if (oldValue == 0) {
129+
this._ping();
130+
}
131+
},
118132
});
119133

120134
})();

0 commit comments

Comments
 (0)