question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Why only few columns are visible in hparams at tensorboard

See original GitHub issue

Hello, I have trained my model with at least 7 hyperparameters. When I try to visualize these hyperparameters on a tensorboard, I was able to see only a few hyperparameters. I didn’t understand why this is happening. When I looked through the source code of Tensorboard, I got to know there is a condition that only few hyperparameters are set to visibility mode and the rest are set to invisible. From the below link I got this code.

https://github.com/tensorflow/tensorboard/blob/b16ed7cd56ad4e8bee3a0c6cc9ca76042d6e3449/tensorboard/plugins/hparams/tf_hparams_parallel_coords_plot/axes.ts#L419

// Set the visibility of the remaining axes to false. this._axes.forEach((axis) => { if (!visibleColIndices.has(axis.colIndex())) { axis.setDisplayed(false); } });

Please help me to visualize all hyperparameters on the tensorboard.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

2reactions
ConverJenscommented, Jun 8, 2021

@haifeng-jin Sorry for the late response! This actually worked when I updated Keras tuner to 1.0.2.

0reactions
haifeng-jincommented, Jun 22, 2021

A quick update. If you are not seeing all the hyperparams, make sure to scroll down the panel on the left to check the check-boxes. By default tensorboard will only show 4 hyperparams.

Screenshot 2021-06-22 2 30 17 PM

Read more comments on GitHub >

github_iconTop Results From Across the Web

Deep Dive Into TensorBoard: Tutorial With Examples
Here are some things we'll cover in this text: Visualizing images in TensorBoard; Checking model weights and biases on TensorBoard; visualizing the model's ......
Read more >
Hyperparameter Tuning with the HParams Dashboard
Visualize the results in TensorBoard's HParams plugin ... hyperparameters in the UI, and you can specify which metrics should be displayed.
Read more >
Tensorflow / Tensorboard missing output from one of hparams ...
I found the problem, as simple as an unticked box in the tensorbox results! So the standard results returned are: tensorboard, box unticked....
Read more >
Hyperparameter Tuning With TensorBoard In 6 Steps
In this tutorial, we are just interested in HyperParameter tuning which ... the hparams plugin available in the tensorboard.plugin module.
Read more >
Neural Networks Hyperparameter tuning in tensorflow 2.0
Typically people use grid search, but grid search is computationally very ... The HParams dashboard in TensorBoard provides several tools to help with...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found