Open thomasahle opened 1 year ago
Thank you for the issue report. Indeed, categorical parameters have not been tested for quite some time now and it makes sense that the HDI calculation is not able to handle them. At the very least the code should not error out, when trying to compute the intervals.
Description
I ran a simple tune job with some categorical parameter ranges. After a few hours the job failed with a NotImplementedError. I didn't have this problem before when using just Integer ranges.
What I Did
I ran a simple
tune local -c simple.json -vv
with the following parameter ranges:After completing the first 15 iterations, suddenly tune crashed with the following trace:
I've now changed my settings to use
Integer(0, 1, 2, 3)
instead of the categorical(0, 1, 2, 3)
. But of course this is not ideal.