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)
| 245 | |
| 246 | |
| 247 | def 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 | |
| 261 | def _display(port=None, height=None, print_message=False, display_handle=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…