skopt.space.transformers
.StringEncoder¶
- class skopt.space.transformers.StringEncoder(dtype=<class 'str'>)[source][source]¶
StringEncoder transform. The transform will cast everything to a string and the inverse transform will cast to the type defined in dtype.
Methods
fit
(X)Fit a list or array of categories.
Inverse transform string encoded categories back to their original
transform
(X)Transform an array of categories to a string encoded representation.
- fit(X)[source][source]¶
Fit a list or array of categories. All elements must be from the same type.
- Parameters
- Xarray-like, shape=(n_categories,)
List of categories.