Scikit-learn in Python 去年学的最重要的机器学习工具

scikit-learn in Python – the most important Machine Learning tool I learnt last year!

This article went through a series of changes!

I was initially writing on a different topic (related to analytics). I had almost finished writing it. I had put in about 2 hours and written an average article. If I had made it live, it would have done OK! But something in me stopped me from making it live. I was just not satisfied with the output. The article didn’t convey how I am feeling about 2015 and how useful Analytics Vidhya could become for your analytics learning this year.

So, I put that article in Trash and started re-thinking which topic would do the justice. This is what I ended up with – let me write awesome articles and guides about what was my biggest learning in 2014 – The Scikit-learn library in Python. This was my biggest learning because it is now the tool I use for any machine learning project I work upon.

Creating these articles would not only be immensely useful for readers of the blog, but would also challenge me in writing about something I am still relatively new at. I would also love to hear from you on the same – what was your biggest learning in 2014 and would you want to share it with readers of this blog?

What is scikit-learn?

Scikit-learn is probably the most useful library for machine learning in Python. It is on NumPy, SciPy and matplotlib, this library contains a lot of effiecient tools for machine learning and statistical modeling including classification, regression, clustering and dimensionality reduction.

Please note that scikit-learn is used to build models. It should not be used for reading the data, manipulating and summarizing it. There are better libraries for that (e.g. NumPy, Pandas etc.)

《Scikit-learn in Python 去年学的最重要的机器学习工具》

Components of scikit-learn:

Scikit-learn comes loaded with a lot of features. Here are a few of them to help you understand the spread:

Supervised learning algorithms:Think of any supervised learning algorithm you might have heard about and there is a very high chance that it is part of scikit-learn. Starting from Generalized linear models (e.g Linear Regression), Support Vector Machines (SVM), Decision Trees to Bayesian methods – all of them are part of scikit-learn toolbox. The spread of algorithms is one of the big reasons for high usage of scikit-learn. I started using scikit to solve supervised learning problems and would recommend that to people new to scikit / machine learning as well.

Cross-validation:There are various methods to check the accuracy of supervised models on unseen data

Unsupervised learning algorithms:Again there is a large spread of algorithms in the offering – starting from clustering, factor analysis, principal component analysis to unsupervised neural networks.

Various toy datasets:This came in handy while learning scikit-learn. I had learnt SAS using various academic datasets (e.g. IRIS dataset, Boston House prices dataset). Having them handy while learning a new library helped a lot.

Feature extraction:Useful for extracting features from images and text (e.g. Bag of words)

Community / Organizations using scikit-learn:

One of the main reasons behind using open source tools is the huge community it has. Same is true for scikit-learn ass well. There are about 35 contributors to scikit learn till date, the most notable being Andreas Mueller (P.S. Andy’smachine learning cheat sheetis one of the best visualizations to understand the spectrum of machine learning algorithms).

There are various Organiations of the likes of Evernote, Inria and AWeber which are being displayed onscikit learn home pageas users. But I truly believe that the actual usage is far more.

In addition to these communities, there are various meetups across the globe. There was also aKaggle knowledge contest, which finished recently but might still be one of the best places to start playing around with the library.

《Scikit-learn in Python 去年学的最重要的机器学习工具》

Machine Learning cheat sheet – see Original image for better resolution

Quick Example:

Now that you understand the eco-system at a high level, let me illustrate the use of scikit learn with an example. The idea is to just illustrate the simplicity of usage of scikit-learn. We will have a look at various algorithms and best ways to use them in one of the articles which follow.

We will build a logistic regression on IRIS dataset:

Step 1: Import the relevant libraries and read the dataset

import numpy as np

import matplotlib as plt

from sklearn import datasets

from sklearn import metrics

from sklearn.linear_model import LogisticRegression

We have imported all the libraries. Next, we read the dataset:

dataset = datasets.load_iris()

Step 2: Understand the dataset by looking at distributions and plots

I am skipping these steps for now. You can readthis article, if you want to learn exploratory analysis.

Step 3: Build a logistic regression model on the dataset and making predictions

model.fit(dataset.data, dataset.target)

expected = dataset.target

predicted = model.predict(dataset.data)

Step 4: Print confusion metrix

print(metrics.classification_report(expected, predicted))

print(metrics.confusion_matrix(expected, predicted))

End Notes:

This was an overview of one of the most powerful and versatile machine learning library in Python. It was also the biggest learning I did in 2014. What was your biggest learning in 2014? Please share it with the group through comments below.

Are you excited about learning and using Scikit-learn? If Yes, stay tuned for the remaining articles in this series.

    原文作者:hzyido
    原文地址: https://www.jianshu.com/p/c4f71e54ec3f
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞