Hello, I am not sure I understand if this is expected. Due to some lacking interface definition, if MLJBase is not imported, one cannot fit a `OneHotEncoder`: ```julia using MLJModels, MLJModelInterface, CategoricalArrays model = OneHotEncoder() X = (x=categorical(["a", "b", "a"]),) fitresult, _, _ = fit(model, 1, X) ```