Way to make custom transformer with ScikitLearn.jl

Was trying to make an oversampler that fits in with the ScikitLearn.jl package, but it seems like only BaseRegressor is supported.

Has anyone figured out a way to make custom transformers for ScikitLearn in Julia?

@cstjean ^

Could you post some more of your code? If by transformer you mean "an object that in python supports .transform(X), then you’ll want to implement ScikitLearnBase.transform(model, X). See GitHub - cstjean/ScikitLearnBase.jl: Abstract interface of ScikitLearn.jl

@dilumaluthge Thank you for the ping!