{"id":32707,"date":"2021-04-30T16:25:41","date_gmt":"2021-04-30T10:55:41","guid":{"rendered":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/"},"modified":"2024-09-02T15:28:21","modified_gmt":"2024-09-02T09:58:21","slug":"unsupervised-machine-learning","status":"publish","type":"post","link":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/","title":{"rendered":"Unsupervised Machine Learning"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"what-is-unsupervised-machine-learning\"><strong>What is &nbsp;Unsupervised machine learning? <\/strong><\/h2>\n\n\n\n<p>Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.<\/p>\n\n\n\n<p>For a better understanding, imagine that our input training data contains a variety of fruits. The machine does not know what they are based on similarities, i.e. their colour, shapes, etc., they group them as different categories as shown in the above figure. It is basically used to find the structure of a given dataset.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"types-of-unsupervised-machine-learning-algorithm\"><strong>Types of Unsupervised Machine Learning Algorithm<\/strong><\/h2>\n\n\n\n<p><strong>Clustering<\/strong>: Clustering is a type of unsupervised machine learning algorithm. As the name suggests, it works based on grouping the dataset. Every set of grouped data contains similar observations.<\/p>\n\n\n\n<p><strong>Types of Clustering:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Centroid-based Model&nbsp;<\/li>\n\n\n\n<li>Density-based Model&nbsp;<\/li>\n\n\n\n<li>Distribution-based Model<\/li>\n\n\n\n<li>Connectivity-based model&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Centroid-based model<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/XePp6QEpMV7G9ZqjNqfJmvxJPJtpuxVytem3o9y3S0x2u9d5vs3JkITYabPSUcWoHuzSBsTcWtyuwgGLu1VdRk6clrTm2ExvPlkQXGa9CMD1_mmY2A1hBhjiPQmECD4INvK3kks\" alt=\"\"\/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Centroid-based clustering converts the data into non-hierarchical clusters.<\/li>\n\n\n\n<li>&nbsp;&nbsp;k-means is the algorithm that works based on a centroid-based clustering algorithm.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>K-means:<\/strong><\/p>\n\n\n\n<p>The main aim of the k-means algorithm is to find the centre of the grouped data where k refers to the number of clusters.<\/p>\n\n\n\n<p>Based on Euclidean distance, it will find the similar points belongs to the cluster.<\/p>\n\n\n\n<p>Then calculate the centroid for each cluster.<\/p>\n\n\n\n<p>K value can choose by elbow method<\/p>\n\n\n\n<p><strong>ELBOW method<\/strong><\/p>\n\n\n\n<p>By changing various values of k, it plots the values of k. Decreasing the elements in the cluster leads to increasing the k value. Less number of elements in the cluster leads to close to the centroid. At one point, the inertia will decrease; that point is known as the elbow point.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/6lATwWXq_Agz-y4UMOcf5edMFVjKXa-94-pkDtJUWZAF2LkWjmBr9XuauM85HtRPaZaWdSH-Dy7FAypojGpgGMnJI4tD8cGmYo-w5_jITezLztzjI1IPN5XJLIJz-D8HhAWFSYs\" alt=\"\"\/><\/figure>\n\n\n\n<p>&nbsp;<strong>Advantages<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is good to use for a large set of data.<\/li>\n\n\n\n<li>High speed in performance when compared to other clustering algorithms.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Disadvantages<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For text data, it is very difficult to find centroids.<\/li>\n\n\n\n<li>It is sensitive to outliers.<\/li>\n\n\n\n<li>K value should be carefully chosen as every value of k gives different centroids.<\/li>\n<\/ul>\n\n\n\n<p><strong>Application of K-means clustering<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Character recognition<\/li>\n\n\n\n<li>Biometrics<\/li>\n\n\n\n<li>Diagnostic system<\/li>\n\n\n\n<li>Military application<\/li>\n<\/ul>\n\n\n\n<p><strong>Density-based model:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/qKpPAD6wHMQx1sFM4SVCgFAjz1A7mUAaMUnXLfZWxusamqSYRl-6lN2o9xS4NMd63uCZjqsllrBl3OZ1hYYq8isG-paTRhkMXMH-iqvaG2f3Jjmg55AhcupmEbRiMSAJ3B6vbrE\" alt=\"\"\/><\/figure>\n\n\n\n<p>Cluster density of the data points will be detected in density-based clustering. &nbsp;Density-based spatial clustering of applications with noise&nbsp;(DBSCAN) is an example of a density-based clustering algorithm. It does not create a number of clusters like k-means; it forms the arbitrary shapes of clusters.<\/p>\n\n\n\n<p>First, we should know about \u03b5 and minPts.<\/p>\n\n\n\n<p>\u03b5 is nothing but a neighbourhood surrounded by any point in data. If the distance between the two points is small, then that point is considered as a neighbour. \u03b5 value should be carefully chosen. If the \u03b5 value is too small, then many points will seem like outliers. If the \u03b5 value is too large, then many points will be considered as the same clusters. Hence \u03b5 value should be calculated by the k-distance graph.<\/p>\n\n\n\n<p>MinPts is known as a minimum number of data points inside \u03b5. If the dataset is large, then minPts must be larger. MinPts can be calculated by MinPts&gt;= D+1<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"core-points\"><strong>Core Points<\/strong><\/h4>\n\n\n\n<p>Based on density approximation, core points are the main thing to form clusters. To calculate \u03b5, we use the same neighbourhood, so the volume of the neighbourhood remains the same. At the same time, the mass of the neighbourhood will not remain the same. First, we have to set&nbsp; a minimum density threshold. We can change minPts to fine-tune the cluster dense.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"border-points\"><strong>Border Points<\/strong><\/h4>\n\n\n\n<p>Except for the core points, other points in our dataset are considered as border points. In other words, a point which has lesser than minPts inside \u03b5 but it is the neighbourhood of a core point.<\/p>\n\n\n\n<p><strong>DBSCAN algorithm<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Randomly choose a point that is not considered an outlier. To find the core point, calculate the neighbourhood. If that point is a core point, begin the cluster around that point; if not, assign that point as an outlier.<\/li>\n\n\n\n<li>Whenever we find a cluster point, expand the cluster points by reaching directly to the cluster. To find density-reachable points do \u201cneighbourhood jumps and add that point to the cluster. If an outlier is joined to that cluster, consider that point as a border point.<\/li>\n\n\n\n<li>Repeat the above steps until all the points are iterated and assigned as cluster point or outliers.<\/li>\n<\/ol>\n\n\n\n<p><strong>Advantages<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The data is easy to understand because of the parameters minPts and \u03b5<\/li>\n\n\n\n<li>Unlike K-means clustering, it is not sensitive to outliers.<\/li>\n\n\n\n<li>Arbitrary-shaped clusters can be found by the DBSCAN algorithm.<\/li>\n\n\n\n<li>The single-link effect can be lesser due to minPts.<\/li>\n<\/ul>\n\n\n\n<p><strong>Disadvantages<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If the difference in densities are large, creating cluster becomes difficult and also difficult to choose minPts and \u03b5<\/li>\n\n\n\n<li>Selecting \u03b5 will become difficult if the data is not clearly understand<\/li>\n\n\n\n<li>For high-dimensional data, the quality of DBSCAN will vary because of choosing a value of \u03b5<\/li>\n<\/ul>\n\n\n\n<p><strong>Application of DBSCAN<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scientific literature<\/li>\n\n\n\n<li>Satellite images<\/li>\n\n\n\n<li>Crystallography of x-ray<\/li>\n\n\n\n<li>Anomaly detection in temperature data<\/li>\n<\/ul>\n\n\n\n<p><strong>Distribution-based model<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The data belongs to some type of distribution that forms one cluster.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The most commonly used method is Gaussian mixture models.<\/li>\n\n\n\n<li>If a data point is far away from the centre, it has a lesser chance that the point lie in distribution.<\/li>\n<\/ul>\n\n\n\n<p><strong>Gaussian Mixture Models (GMMs)<\/strong><\/p>\n\n\n\n<p>By using the maximum expectation algorithm, we find the parameters known as the mean and standard deviation for Gaussian mixture models.<\/p>\n\n\n\n<p>Like K-means clustering, first, we have to select a number of clusters and have to select Gaussian distribution parameters for each clusters randomly.<\/p>\n\n\n\n<p>After that, we have to find whether a data point belongs to a particular cluster or not. We should find the cluster centre that every point is close to that centre.<\/p>\n\n\n\n<p>Then we have to calculate new parameters that are mean and standard deviation for Gaussian distribution to increase the chance of data points to present in the cluster. Using the weighted sum of data point position, we have to calculate new parameters.<\/p>\n\n\n\n<p>Repeat the above two steps to iterate all data points.&nbsp;<\/p>\n\n\n\n<p><strong>Advantage<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By using standard deviation, cluster can be formed by eclipse shape, not in circular shape this made GMMs method more flexible when compared to K-means clustering.<\/li>\n\n\n\n<li>We can achieve multiple clusters per data point because GMMs use probabilities. GMMs use mixed membership, that is, a data point in the centre that can overlap with two cluster.&nbsp;<\/li>\n\n\n\n<li>It overcomes the problem of overfitting by using a fixed number of&nbsp; Gaussian distribution.<\/li>\n<\/ul>\n\n\n\n<p><strong>Disadvantage<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Complex model of clusters are produced by distribution-based clustering.<\/li>\n\n\n\n<li>This made it very difficult to understand for the user.<\/li>\n<\/ul>\n\n\n\n<p><strong>Connectivity-based model<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/_eLcD-6DNf7M9ZxCcIj2Y89uezRXkkYbp9KWulBpoE0YaXHxgSQF4vlnu2nBhs-nhrDFtb6cdldjtY3dbN2UPif9ryO5nhsuKRl56XVVLIgVN4eDBgY1sDAeFjskPam2GkpIVPQ\" alt=\"\"\/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Hierarchical clustering falls under the category of Connectivity-based clustering.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Building a tree diagram is the main agenda of hierarchical clustering.<\/li>\n\n\n\n<li>Hierarchical clustering is used to find hierarchical data, namely taxonomies.&nbsp;<\/li>\n\n\n\n<li>Hierarchical clustering involves creating clusters that have a predetermined ordering from top to bottom.&nbsp;<\/li>\n\n\n\n<li>Each cluster has a similar type of object.<\/li>\n\n\n\n<li>It has two main categories: Divisive and Agglomerative.<\/li>\n<\/ul>\n\n\n\n<p><strong>Hierarchical clustering<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Each observation is treated as separate clusters<\/li>\n\n\n\n<li>Close cluster is identified and joined together<\/li>\n\n\n\n<li>This process is continued until all the clusters are joined<\/li>\n<\/ul>\n\n\n\n<p><strong>Dendrogram<\/strong><\/p>\n\n\n\n<p>Dendrogram is nothing but a diagrammatic representation of the tree.<\/p>\n\n\n\n<p>It used to arrange objects into clusters<\/p>\n\n\n\n<p><strong>How to read dendrogram<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/YK6JufLO26VKXknzOnIzG9S6SApVrVICdyGX2fgyngj-9SiWgAGopWL9Cmq0iEce_8i6CoInqj_IaOk1DxTtZu7cTj1EKvcsIsM5X44WWdCp2rP90lOHV94r6MfK6aEgK1Gb2iQ\" alt=\"\"\/><\/figure>\n\n\n\n<p>Dendogram can be either column graph, row graph, circular or fluid shape. But our system will produce column graph or row graph. Irrespective of shapes all graph contain same parts.<\/p>\n\n\n\n<p>The branch is called Clade. Usually named by Greek letters and can be read from left to right, e.g., \u03b1 \u03b2, \u03b4.<\/p>\n\n\n\n<p>&nbsp;Clade has many numbers of leaves such as,<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Single (simplicifolius): f<\/li>\n\n\n\n<li>Double (bifolius): d, e<\/li>\n\n\n\n<li>Triple (trifolious): a, b, c<\/li>\n<\/ul>\n\n\n\n<p>Basically, clade has an enormous number of leaves if the clade with more leaves is difficult to read.<br><\/p>\n\n\n\n<p>Clades are arranged based on similarities and dissimilarities between them. Clades with same height are considered as similar and clade which contain different height are considered as dissimilar. Pearson\u2019s Correlation Coefficient measures similarities.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/TAlDV0fevXIwehlGNmLSzgIR_0EZUzXx5P09G9mcUiVFLt46KFLyjM2EmcAxM7VnZ9mXuiiaJjV3nIA9vz_rUBAIHmGAGJ-a8g5S-VKP-IXwEzAtls5veW8GXuIGATqzRDfp748\" alt=\"\"\/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Leaves a, b are considered as similar when compared to c, d, e, f.<\/li>\n\n\n\n<li>Leaves d and e are considered as similar when compared to a, b, c, and d.<\/li>\n\n\n\n<li>Leaf e and f are completely dissimilar to other leaves.<\/li>\n<\/ul>\n\n\n\n<p>In the above diagram, the same clave \u03b2 joins leaves a, b, c, d, and e. That means that the two groups (a, b, c, d, e) are more similar to each other than they are to f.<\/p>\n\n\n\n<p><strong>Divisive method<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In <strong>divisive<\/strong> or <strong>top-down clustering,<\/strong> we consider every object into a <strong>single cluster <\/strong>and then divide the cluster <strong>into two least similar clusters<\/strong>.&nbsp;<\/li>\n\n\n\n<li>&nbsp;Finally, we divide each cluster until there is one cluster for every object.<\/li>\n<\/ul>\n\n\n\n<p><strong>Agglomerative<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the agglomerative or bottom-up clustering method, we consider every object into its own cluster.&nbsp;<\/li>\n\n\n\n<li>Then, calculate the similarity (i.e., distance) between each of the clusters and merge them into the two most similar clusters.&nbsp;&nbsp;&nbsp;&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Advantage<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Information about the number of clusters is not needed.<\/li>\n\n\n\n<li>It is easy to implement.<\/li>\n\n\n\n<li>By seeing dendrogram, we can count the number of clusters easily.<\/li>\n<\/ul>\n\n\n\n<p><strong>Disadvantage<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Object function is not reduced directly.<\/li>\n\n\n\n<li>It breaks large clusters into small clusters.<\/li>\n\n\n\n<li>Because of the different shape of cluster, it is challenging to handle.&nbsp;<\/li>\n\n\n\n<li>Sensitive to outliers.<\/li>\n<\/ul>\n\n\n\n<p><strong>Application of Hierarchical clustering<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>US Senator Clustering through Twitter<\/li>\n\n\n\n<li>Charting Evolution through Phylogenetic Trees<\/li>\n\n\n\n<li>Tracking Viruses through Phylogenetic Trees<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"how-to-measure-cluster-distance\"><strong>How to measure cluster distance<\/strong><\/h3>\n\n\n\n<p>Using distance function, we have to find a proximity matrix that is nothing but the distance between each point then only we have to create cluster.<\/p>\n\n\n\n<p>To show the distance between clusters, we have to update the matrix.<\/p>\n\n\n\n<p>There are five types to calculate how to measure the distance between the clusters<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Single linkage<\/li>\n\n\n\n<li>Complete linkage<\/li>\n\n\n\n<li>Average linkage<\/li>\n\n\n\n<li>Centroid method<\/li>\n\n\n\n<li>Ward\u2019s method<\/li>\n<\/ul>\n\n\n\n<p><strong>Single linkage<\/strong><\/p>\n\n\n\n<p>Single-linkage is nothing but a single pair of elements that are determined to calculate the distance between two clusters. Two elements which are from the different cluster are linked together because they are closer in the distance. These pairwise distance re the shortest distance between two clusters are merged together; this is also known as nearest neighbour clustering or minimum distance linkage.<\/p>\n\n\n\n<p>The mathematical expression for single linkage is shown in the above diagram in that expression X and Y are two elements in clusters.&nbsp;<\/p>\n\n\n\n<p><strong>Complete linkage<\/strong><\/p>\n\n\n\n<p>Complete linkage clustering is just opposite to single linkage clustering. Complete linkage clustering refers to the longest linkage between the elements which are far away from each other. This is otherwise known as maximum linkage clustering. But the cluster is small when compared to a single linkage. The diameter of two clusters are smaller than distance threshold.<\/p>\n\n\n\n<p><strong>Average linkage<\/strong><\/p>\n\n\n\n<p>In average linkage, the distance between two clusters is defined as the average distance between each point in one cluster to every point in the other cluster. In this case, the outlier will not affect the linkage. This is also known as UPGMA- unweighted pair group mean averaging.<\/p>\n\n\n\n<p><strong>Centroid Method&nbsp;<\/strong><\/p>\n\n\n\n<p>The main aim of the centroid method is to find the mean vector location of each cluster and finding the distance between two clusters.<\/p>\n\n\n\n<p><strong>Ward'S Method<\/strong><\/p>\n\n\n\n<p>In this method, the total within the cluster variance is minimized. These clusters are merged and give minimum information loss that is ESS criteria.<\/p>\n\n\n\n<p>Conclusion<\/p>\n\n\n\n<p>With this, we come to an end for this article. If you want to go one step ahead, you can also have a look at <a href=\"https:\/\/www.mygreatlearning.com\/academy\/learn-for-free\/courses\/introduction-to-supervised-learning\" target=\"_blank\" rel=\"noreferrer noopener\">Introduction to supervised machine learning.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"our-machine-learning-courses\">Our Machine Learning Courses<\/h2>\n\n\n\n<p>Explore our Machine Learning and AI courses, designed for comprehensive learning and skill development.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Program Name<\/strong><\/th><th><strong>Duration<\/strong><\/th><\/tr><tr><th><a href=\"https:\/\/professionalonline2.mit.edu\/no-code-artificial-intelligence-machine-learning-program\">MIT No code AI and Machine Learning Course<\/a><\/th><th>12 Weeks<\/th><\/tr><tr><th><a href=\"https:\/\/idss-gl.mit.edu\/mit-idss-data-science-machine-learning-online-program\">MIT Data Science and Machine Learning Course<\/a><\/th><th>12 Weeks<\/th><\/tr><tr><th><a href=\"https:\/\/www.mygreatlearning.com\/mit-data-science-and-machine-learning-program\">Data Science and Machine Learning Course<\/a><\/th><th>12 Weeks<\/th><\/tr><\/thead><\/table><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>What is &nbsp;Unsupervised machine learning? Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown. For a better understanding, imagine that our input training data contains a variety of fruits. The machine does not know what they are based on similarities, i.e. their colour, shapes, etc., they [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":32708,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2],"tags":[],"content_type":[],"class_list":["post-32707","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Unsupervised Machine Learning<\/title>\n<meta name=\"description\" content=\"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unsupervised Machine Learning\" \/>\n<meta property=\"og:description\" content=\"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/\" \/>\n<meta property=\"og:site_name\" content=\"Great Learning Blog: Free Resources what Matters to shape your Career!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/GreatLearningOfficial\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-30T10:55:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-02T09:58:21+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1560\" \/>\n\t<meta property=\"og:image:height\" content=\"672\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Great Learning Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/Great_Learning\" \/>\n<meta name=\"twitter:site\" content=\"@Great_Learning\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Great Learning Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/\"},\"author\":{\"name\":\"Great Learning Editorial Team\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\"},\"headline\":\"Unsupervised Machine Learning\",\"datePublished\":\"2021-04-30T10:55:41+00:00\",\"dateModified\":\"2024-09-02T09:58:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/\"},\"wordCount\":1922,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/ML.jpg\",\"articleSection\":[\"AI and Machine Learning\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/\",\"name\":\"Unsupervised Machine Learning\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/ML.jpg\",\"datePublished\":\"2021-04-30T10:55:41+00:00\",\"dateModified\":\"2024-09-02T09:58:21+00:00\",\"description\":\"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/ML.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/ML.jpg\",\"width\":1560,\"height\":672,\"caption\":\"Machine learning. Hand of robot touching on computer chip and binary data. Futuristic Artificial intelligence (AI). Deep Learning. Neural Network. Brain representing. Accurate facial recognition detection innovative concept\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/unsupervised-machine-learning\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI and Machine Learning\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/artificial-intelligence\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Unsupervised Machine Learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"name\":\"Great Learning Blog\",\"description\":\"Learn, Upskill &amp; Career Development Guide and Resources\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"alternateName\":\"Great Learning\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\",\"name\":\"Great Learning\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"width\":900,\"height\":900,\"caption\":\"Great Learning\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/GreatLearningOfficial\\\/\",\"https:\\\/\\\/x.com\\\/Great_Learning\",\"https:\\\/\\\/www.instagram.com\\\/greatlearningofficial\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/in.pinterest.com\\\/greatlearning12\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/beaconelearning\\\/\"],\"description\":\"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.\",\"email\":\"info@mygreatlearning.com\",\"legalName\":\"Great Learning Education Services Pvt. Ltd\",\"foundingDate\":\"2013-11-29\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1001\",\"maxValue\":\"5000\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\",\"name\":\"Great Learning Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"caption\":\"Great Learning Editorial Team\"},\"description\":\"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.\",\"sameAs\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/\",\"https:\\\/\\\/in.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/Great_Learning\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCObs0kLIrDjX2LLSybqNaEA\"],\"award\":[\"Best EdTech Company of the Year 2024\",\"Education Economictimes Outstanding Education\\\/Edtech Solution Provider of the Year 2024\",\"Leading E-learning Platform 2024\"],\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/author\\\/greatlearning\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Unsupervised Machine Learning","description":"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/","og_locale":"en_US","og_type":"article","og_title":"Unsupervised Machine Learning","og_description":"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.","og_url":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/","og_site_name":"Great Learning Blog: Free Resources what Matters to shape your Career!","article_publisher":"https:\/\/www.facebook.com\/GreatLearningOfficial\/","article_published_time":"2021-04-30T10:55:41+00:00","article_modified_time":"2024-09-02T09:58:21+00:00","og_image":[{"width":1560,"height":672,"url":"http:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg","type":"image\/jpeg"}],"author":"Great Learning Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/Great_Learning","twitter_site":"@Great_Learning","twitter_misc":{"Written by":"Great Learning Editorial Team","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#article","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/"},"author":{"name":"Great Learning Editorial Team","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad"},"headline":"Unsupervised Machine Learning","datePublished":"2021-04-30T10:55:41+00:00","dateModified":"2024-09-02T09:58:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/"},"wordCount":1922,"commentCount":0,"publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg","articleSection":["AI and Machine Learning"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/","url":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/","name":"Unsupervised Machine Learning","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#primaryimage"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg","datePublished":"2021-04-30T10:55:41+00:00","dateModified":"2024-09-02T09:58:21+00:00","description":"Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown.","breadcrumb":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#primaryimage","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg","width":1560,"height":672,"caption":"Machine learning. Hand of robot touching on computer chip and binary data. Futuristic Artificial intelligence (AI). Deep Learning. Neural Network. Brain representing. Accurate facial recognition detection innovative concept"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mygreatlearning.com\/blog\/unsupervised-machine-learning\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.mygreatlearning.com\/blog\/"},{"@type":"ListItem","position":2,"name":"AI and Machine Learning","item":"https:\/\/www.mygreatlearning.com\/blog\/artificial-intelligence\/"},{"@type":"ListItem","position":3,"name":"Unsupervised Machine Learning"}]},{"@type":"WebSite","@id":"https:\/\/www.mygreatlearning.com\/blog\/#website","url":"https:\/\/www.mygreatlearning.com\/blog\/","name":"Great Learning Blog","description":"Learn, Upskill &amp; Career Development Guide and Resources","publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"alternateName":"Great Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mygreatlearning.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization","name":"Great Learning","url":"https:\/\/www.mygreatlearning.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","width":900,"height":900,"caption":"Great Learning"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/GreatLearningOfficial\/","https:\/\/x.com\/Great_Learning","https:\/\/www.instagram.com\/greatlearningofficial\/","https:\/\/www.linkedin.com\/school\/great-learning\/","https:\/\/in.pinterest.com\/greatlearning12\/","https:\/\/www.youtube.com\/user\/beaconelearning\/"],"description":"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.","email":"info@mygreatlearning.com","legalName":"Great Learning Education Services Pvt. Ltd","foundingDate":"2013-11-29","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1001","maxValue":"5000"}},{"@type":"Person","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad","name":"Great Learning Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","caption":"Great Learning Editorial Team"},"description":"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.","sameAs":["https:\/\/www.mygreatlearning.com\/","https:\/\/in.linkedin.com\/school\/great-learning\/","https:\/\/x.com\/https:\/\/twitter.com\/Great_Learning","https:\/\/www.youtube.com\/channel\/UCObs0kLIrDjX2LLSybqNaEA"],"award":["Best EdTech Company of the Year 2024","Education Economictimes Outstanding Education\/Edtech Solution Provider of the Year 2024","Leading E-learning Platform 2024"],"url":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg",1560,672,false],"thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-150x150.jpg",150,150,true],"medium":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-300x129.jpg",300,129,true],"medium_large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-768x331.jpg",768,331,true],"large":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-1024x441.jpg",1024,441,true],"1536x1536":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-1536x662.jpg",1536,662,true],"2048x2048":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML.jpg",1560,672,false],"web-stories-poster-portrait":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-640x672.jpg",640,672,true],"web-stories-publisher-logo":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-96x96.jpg",96,96,true],"web-stories-thumbnail":["https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2021\/04\/ML-150x65.jpg",150,65,true]},"uagb_author_info":{"display_name":"Great Learning Editorial Team","author_link":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"},"uagb_comment_info":0,"uagb_excerpt":"What is &nbsp;Unsupervised machine learning? Unsupervised machine learning is an algorithm used to train the dataset where the labels or classes are unknown. For a better understanding, imagine that our input training data contains a variety of fruits. The machine does not know what they are based on similarities, i.e. their colour, shapes, etc., they&hellip;","_links":{"self":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/32707","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/comments?post=32707"}],"version-history":[{"count":7,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/32707\/revisions"}],"predecessor-version":[{"id":104970,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/32707\/revisions\/104970"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media\/32708"}],"wp:attachment":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media?parent=32707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/categories?post=32707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/tags?post=32707"},{"taxonomy":"content_type","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/content_type?post=32707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}