I am trying to visualize the influence of some discrete hyperparameters on some continuous metrics.
I think there is the need for a widget which allows both discrete and continous hyperparamters. So far the best I can get is to use a parallel categories plot and discretize the continuous values into some bin (or approximate them to the closest integer to reduce the number of classes).
Here is an overview of what it is available, to the best of my knowledge, with the current APIs.
- The first plot is the parallel categories plot that I am talking about, rounded to the closest integer.
- The second plot shows only the continuous metrics
- The third plot is an attempt to plot both continuous and categorical values with a parallel coordinates plot, the result is bad since one can’t distinguish proportions for the categorical coordinates
The first plot is using parallel_categories
, the second parallel_coordinates
, the third Parcoords
.