Scikit-learn - Powerful package of machine learning algorithm in Python
Scikit-Learn is a famous package of machine learning in Python, that are contributed by the community. Most of the processes involving data mining including data processing, model training and validation and assessment are available in this module. Some highlighted algorithms of Regression, Decision Tree, Clustering are allowed to satisfy our analytic needs. Recently, I am glad to find a new class of Artificial Neural Network for supervised learning in the new version. Really cannot wait for the latest version of scikit-learn!
So, install Scikit-Learn first!
Mac
Open the terminal and type:
Window
Open the CMD:
Ubuntu
Open the terminal and type:
Let's enjoy the journey of data mining in data jungle with Scikit-learn!
So, install Scikit-Learn first!
Mac
Open the terminal and type:
pip install scikit-learn
Window
Open the CMD:
pip install scikit-learn
Ubuntu
Open the terminal and type:
pip install --user --install-option="--prefix=" -U scikit-learn
Let's enjoy the journey of data mining in data jungle with Scikit-learn!
Comments
Post a Comment