Sklearn (scikit learn) alternative?

is there any alternative of the scikit learn in pure Julia?
I think, sci-kit learn is help in python and I found the most popular and useful algorithms.
can I get the same Julia package?

any help appreciated

There is no sklearn in pure Julia.

  1. ScikitLearn.jl: is a wrapper
  2. MLJ.jl is the biggest Julia ML interface to both pure Julia models & other models
    models(x -> x.is_pure_julia): lists all models written in pure Julia
    MLJ interfaces: Flux, XGBoost, LightGBM, EvoTrees and many other awesome packages
5 Likes

thank you

1 Like