MCPcopy Create free account
hub / github.com/tensorflow/tensorboard / display

Function display

tensorboard/notebook.py:247–258  ·  view source on GitHub ↗

Display a TensorBoard instance already running on this machine. Args: port: The port on which the TensorBoard server is listening, as an `int`, or `None` to automatically select the most recently launched TensorBoard. height: The height of the frame into which to ren

(port=None, height=None)

Source from the content-addressed store, hash-verified

245
246
247def display(port=None, height=None):
248 """Display a TensorBoard instance already running on this machine.
249
250 Args:
251 port: The port on which the TensorBoard server is listening, as an
252 `int`, or `None` to automatically select the most recently
253 launched TensorBoard.
254 height: The height of the frame into which to render the TensorBoard
255 UI, as an `int` number of pixels, or `None` to use a default value
256 (currently 800).
257 """
258 _display(port=port, height=height, print_message=True, display_handle=None)
259
260
261def _display(port=None, height=None, print_message=False, display_handle=None):

Callers

nothing calls this directly

Calls 1

_displayFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…