Blog Logo
AIML Resident @ Apple
·
read
Image Source: https://maxoffsky.com/word/wp-content/uploads/2014/04/Screen-Shot-2014-04-28-at-10.32.16-AM.png
· · ·

Basics of Machine Learning Series

Index

· · ·

Drawbacks of Logistic Regression

Consider a highly non-linear classification task, say something similar to the one shown in the plot below. In order to achieve a decision boundary like the one plotted, one needs to introduce non-linear features in the form of quadratic and other higher order terms, similar to the equation below.

Non-linear Classification

As the number of features increase then number of terms in the hypotheses would also increase exponentially to get a good fit which would have high probability of overfitting the data. Hence, when the number of features is really high and the decision boundary is complex, logistic regression would not generalize the solution very well by leveraging the power of polynomial terms. So for highly complex tasks like the ones where one needs to classify objects from images, logistic regression would not perform well.

For example, for images of size 100 * 100 pixels if one uses all quadratic features, there would be around 50 million parameter values to learn which is computationally very expensive task and still not a guarantee of good decision boundary.

This is where Neural Networks step in to save the day.

Neural Networks

They are class of very powerful machine learning classifiers that are capable of fitting almost any hypotheses and are motivated by the way a brain functions. Even though the concepts of neural networks were well developed by the 80s, they came into popularity fairly recently because of the advances in the compute power of machines using multiple cores and GPUs. It is mainly because neural networks are a class of very computationally expensive algorithms and earlier systems were just not fast enough to get good results in a feasible time-frame.

One Learning Algorithm Hypothesis

This hypothesis puts light on the fact that even though human brain learns a variety of tasks involving visual, vocal, or audio inputs, it does not learn them using different algorithms. It has been found that if the optic nerve is re-routed to the auditory cortex (responsible for decoding audio), it would learn to use the input and work with visual input as well i.e. Auditory cortex learns to see. So, extending the result of such experiments suggesting that a single tissue in brain is capable of performing different tasks like analyse visuals, audio, touch etc, it is posited that there must be one algorithm that can approximate any learning task similar to the way brain learns.

REFERENCES:

Machine Learning: Coursera - Non-Linear Hypotheses
Machine Learning: Coursera - Neurons and the Brain

· · ·