26

Guide to Unsupervised Machine Learning

 5 years ago
source link: https://www.tuicool.com/articles/hit/vmuaiq6
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Machine learning algorithms are gaining more and more traction in the business world. The amount of incoming information becomes (or became already for some industries) too large to find business intelligence insights manually. Unsupervised machine learning helps to explore the data and make sense of it.

We had talked about supervised ML algorithms in the previous article. In this one, we'll focus on unsupervised ML and its real-life applications.

What is unsupervised machine learning?

Unsupervised machine learning is a type of an ML algorithm that looks for relationships between dataset elements and learns to classify that raw data without outside help (hence, unsupervised.)

This type of ML algorithms helps to group unstructured data according to its similarities and distinct patterns, helping to identify trends and probability chances.

How does unsupervised ML algorithm work?

Have you ever looked for hidden patterns, structures, or features when you're looking at something, for example when you are comparing a list of hotels to stay at in a city you've never visited before? Whether you consciously group the various hotels according to various features and prices or not, your brain does it, helping you to choose the best option.

The unsupervised algorithm is handling data without prior training - it is a function that does its job with the data at its disposal. In a way, it is left at his own devices to sort things out as it sees fit.

The unsupervised algorithm works with unlabeled data, and its purpose is exploration. If supervised machine learning works under clearly defines rules, unsupervised learning is operating under the conditions of results being unknown and thus needed to be established in the process.

The unsupervised machine learning algorithm is used to:

  1. Explore the structure of the information
  2. Detect patterns and trends
  3. Locate data points that might affect the decision-making process

Unsupervised ML uses two primary techniques for the tasks above - clustering and dimensionality reduction.

Clustering - Exploration of Data

“Clustering” is the term used to describe the exploration of data, where the similar pieces of information are grouped. There are several steps to this process:

  • Defining the characteristics according to which the objects in the dataset will be evaluated
  • Calculating the degrees of similarity between objects
  • Applying one of the methods of cluster analysis to create groups (known as clusters) from similar objects
  • Verifying the results of clustering

Clustering techniques are simple yet effective - they require little intensive work, but can provide valuable insights into the data we've got.

Clustering has been widely used across industries for years:

  • Biology - for genetic and species grouping;
  • Medical imaging - for distinguishing between different kinds of tissues;
  • Market research - for differentiating groups of customers based on some attributes
  • Recommender systems - giving you better Amazon purchase suggestions or Netflix movie matches.

Dimensionality Reduction - Making Data Digestible

In a nutshell, dimensionality reduction is the process of distilling the relevant information from the chaos or getting rid of the unnecessary information.

Raw data is usually laced with a thick layer of data noise, which can be anything - missing values, erroneous data, muddled bits, or something irrelevant to the cause. Because of that, before you start digging for insights, you need to clean the data up first. Dimensionality reduction helps to do just that.

From the technical standpoint - dimensionality reduction is the process of decreasing the complexity of data while retaining the relevant parts of its structure to a certain degree.

Unsupervised Machine Learning Real Life Examples

k-means Clustering - Data Mining

k-means clustering is the central algorithm in unsupervised machine learning operation. It is the algorithm that defines the features present in the dataset and groups certain bits with common elements into clusters.

As such, k-means clustering is an indispensable tool in the data mining operation. It is also used for:

  • Audience segmentation
  • Customer persona investigation
  • Anomaly detection (for example, to detect bot activity)
  • Pattern recognition (grouping images, transcribing audio)
  • Inventory management (by conversion activity or by availability)

Hidden Markov Model - Pattern Recognition, Natural Language Processing, Data Analytics

Hidden Markov Model is one of the more elaborate unsupervised machine learning algorithms. It is a statical model that analyzes the features of data and groups it accordingly.

Hidden Markov Model is a variation of the simple Markov chain that includes observations over the state of data, which adds another perspective on the data gives the algorithm more points of reference.

Hidden Markov Model real-life applications also include:

  • Optical Character recognition (including handwriting recognition)
  • Speech recognition and synthesis (for conversational user interfaces)
  • Text Classification (with parts-of-speech tagging)
  • Text Translation

Hidden Markov Models are also used in data analytics operations. In that field, HMM is used for clustering purposes. It finds the associations between the objects in the dataset and explores its structure. Usually, HMM are used for sound or video sources of information.

DBSCAN Clustering - Customer Service Personalization, Recommender engines

DBSCAN Clustering AKA Density-based Spatial Clustering of Applications with Noise is another approach to clustering. It is commonly used in data wrangling and data mining for the following activities:

  • Explore the structure of the information
  • Find common elements in the data
  • Predict trends coming out of data

Overall, DBSCAN operation looks like this:

  • The algorithm groups data points that are close to each other.
  • Then it sorts the data according to the exposed commonalities

DBSCAN algorithms are used in the following fields:

  • Targeted Ad Content Inventory Management
  • Customer service personalization
  • Recommender Engines

Principal component analysis (PCA) - Data Analytics Visualization / Fraud Detection

PCA is the dimensionality reduction algorithm for data visualization. It is a sweet and simple algorithm that does its job and doesn’t mess around. In the majority of the cases is the best option.

In its core, PCA is a linear feature extraction tool. It linearly maps the data about the low-dimensional space.

PCA combines input features in a way that gathers the most important parts of data while leaving out the irrelevant bits.

As a visualization tool - PCA is useful for showing a bird’s eye view on the operation. It can be an excellent tool to:

  • Show the dynamics of the website traffic ebbs and flows.
  • Break down the segments of the target audience on specific criteria

t-SNE - Data Analytics Visualization

t-SNE AKA T-distributed Stochastic Neighbor Embedding is another go-to algorithm for data visualization.

t-SNE uses dimensionality reduction to translate high-dimensional data into low-dimensional space. In other words, show the cream of the crop of the dataset.

The whole process looks like this:

  • The algorithm counts the probability of similarity of the points in a high-dimensional space.
  • Then it does the same thing in the corresponding low-dimensional space.
  • After that, the algorithm minimizes the difference between conditional probabilities in high-dimensional and low-dimensional spaces for the optimal representation of data points in a low-dimensional space.

As such, t-SNE is good for visualizing more complex types of data with many moving parts and everchanging characteristics. For example, t-SNE is good for:

  • Genome visualization in genomics application
  • Medical test breakdown (for example, blood test or operation stats digest)
  • Complex audience segmentation (with highly detailed segments and overlapping elements)

Singular value decomposition (SVD) - Recommender Systems

Singular value decomposition is a dimensionality reduction algorithm used for exploratory and interpreting purposes.

It is an algorithm that highlights the significant features of the information in the dataset and puts them front and center for further operation. Case in point - making consumer suggestions, such as which kind of shirt and shoes fit best with those ragged vantablack Levi’s jeans.

In a nutshell, it sharpens the edges and turns the rounds into the tightly fitting squares. In a way, SVD is reappropriating relevant elements of information to fit a specific cause.

SVD can be used:

  • To extract certain types of information from the dataset (for example, take out info on every user located in Tampa, Florida).
  • To make suggestions for a particular user in the recommender engine system.
  • To curate ad inventory for a specific audience segment during real-time bidding operation.

Association rule - Predictive Analytics

Association rule is one of the cornerstone algorithms of unsupervised machine learning.

It is a series of technique aimed at uncovering the relationships between objects. This provides a solid ground for making all sorts of predictions and calculating the probabilities of certain turns of events over the other.

While association rules can be applied almost everywhere, the best way to describe what exactly they are doing are via eCommerce-related example.

There are three major measure applied in association rule algorithms

  • Support measure shows how popular the item is by the proportion of transaction in which it appears.
  • Confidence measure shows the likeness of Item B being purchased after item A is acquired.
  • Lift measure also shows the likeness of Item B being purchased after item A is bought. However, it adds to the equation the demand rate of Item B.

Conclusion

The secret of gaining a competitive advantage on the specific market is in the effective use of data. Unsupervised machine learning algorithms help you segment the data to study your target audience's preferences or see how a specific virus reacts to a specific antibiotic.

The real-life applications abound and our data scientists, engineers, and architects can help you define your expectations and create custom ML solutions for your business.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK