ThibzR

Results 2 issues of ThibzR

fix #133 One can now directly pass a Callable when creating a `CategoricalHyperparameter`. This is streamlining prototyping. Couple of examples: - `CategoricalHyperparameter('final_activation', [nn.Softmax(dim=1), nn.Sigmoid()])` - `CategoricalHyperparameter('loss_function', [nn.L1Loss, nn.MSELoss])` Previously, one...

Currently there is no way to pass an object (not `int`, `float` or `str`) when declaring a set of `CategoricalHyperparameter`. Would be very nice to be able to do something...