Why only few columns are visible in hparams at tensorboard
See original GitHub issueHello, 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:
- Created 3 years ago
- Comments:10 (6 by maintainers)
@haifeng-jin Sorry for the late response! This actually worked when I updated Keras tuner to 1.0.2.
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.