Closed vshesh closed 3 years ago
yes, it uses sklearn models and preprocessing libraries. if you want pure julia implementation, you can use: https://github.com/IBM/AMLPipelineBase.jl
the base only supports randomforest, adaboost, and prunetree from DecisionTree.jl but you can extend it.
for fresh install, export this in your shell and rebuild PyCall. this is an issue in PyCall package:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.julia/conda/3/lib export PYTHON=Conda
julia> using Pkg julia> Pkg.build("Conda") # assuming Conda is already installed julia> Pkg.build("PyCall") # assuming PyCall is already installed julia> Pkg.add("AutoMLPipeline")
I have mentioned this issue in the Readme
System: Mac OS X: 10.13 Python version3.8 on path, through homebrew
why does automlpipeline require python? is there a way to install it without python?